diff -r 9a262e046ab8 -r bc9a0fefd892 stream.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/stream.h Tue Sep 20 15:19:28 2011 +0200 @@ -0,0 +1,28 @@ +/* + * stream.h + * + * Created on: 20.09.2011 + * Author: beckermi + */ + +#ifndef STREAM_H_ +#define STREAM_H_ + +#include "stdinc.h" + +#ifdef _WIN32 +int _STREAM_STDOUT; +#endif + +#ifdef _cplusplus +extern "C" { +#endif + +void close_stdout(); +void reopen_stdout(); + +#ifdef _cplusplus +extern "C" } +#endif + +#endif /* STREAM_H_ */