Linux compilation of ttsnoop (Matthew Howkins)

This may contain prexisting 64-bit issues, caused by hammering pointers
into ints.
This commit is contained in:
Peter Howkins
2012-04-12 19:08:52 +01:00
parent 0859109ba0
commit aa605c16f3
12 changed files with 94 additions and 25 deletions

View File

@@ -29,7 +29,13 @@
#ifndef TT_CXX_H
#define TT_CXX_H
#if defined(linux)
#include <iostream>
using namespace std;
#else
#include <iostream.h>
#endif
#include <Tt/tt_c.h>
ostream & operator<<( ostream &, Tt_status );