您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
27 行
424 B
27 行
424 B
// Debugging stream.
|
|
|
|
// General includes.
|
|
#include "cl_sysdep.h"
|
|
|
|
// Specification.
|
|
#include "cl_io.h"
|
|
|
|
|
|
// Implementation.
|
|
|
|
// Just assume that the debugger runs on /dev/tty, independently of
|
|
// cl_stdin, cl_stdout, cl_stderr.
|
|
|
|
#if defined(CL_IO_STDIO)
|
|
|
|
FILE* cl_debugout = fopen("/dev/tty","a");
|
|
|
|
#endif
|
|
|
|
#if defined(CL_IO_IOSTREAM)
|
|
|
|
#include <fstream.h>
|
|
|
|
ostream* cl_debugout_stream = new ofstream ("/dev/tty");
|
|
|
|
#endif
|