]> www.ginac.de Git - cln.git/blob - src/base/output/cl_prin_globals.cc
* */*: Removed problematic stdin, stdout and stderr definitions.
[cln.git] / src / base / output / cl_prin_globals.cc
1 // Global variables in CLN
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 CL_PROVIDE(cl_prin_globals)
7
8 // Specification.
9 #include "cln/output.h"
10
11
12 // Implementation.
13
14 namespace cln {
15
16 cl_print_flags default_print_flags;
17 #if 0 // The default constructors already do this.
18 AT_INITIALIZATION(default_print_flags)
19 {
20         default_print_flags.rational_base = 10;
21         default_print_flags.rational_readably = cl_false;
22         default_print_flags.float_readably = cl_false;
23         default_print_flags.default_float_format = float_format_ffloat;
24         default_print_flags.complex_readably = cl_false;
25         default_print_flags.vector_syntax = vsyntax_pretty;
26         default_print_flags.univpoly_varname = "x";
27 }
28 #endif
29
30 }  // namespace cln
31
32 CL_PROVIDE_END(cl_prin_globals)