]> www.ginac.de Git - cln.git/blob - src/base/cl_debugout.cc
ddfd01514f7a75df739e261383bccdd53f2c0ef0
[cln.git] / src / base / cl_debugout.cc
1 // Debugging stream.
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cln/io.h"
8
9
10 // Implementation.
11
12 // Just assume that the debugger runs on /dev/tty, independently of
13 // stdin, stdout, stderr.
14
15 #include <fstream>
16
17 namespace cln {
18
19 std::ostream * cl_debugout_stream = new std::ofstream ("/dev/tty");
20
21 }  // namespace cln