]> www.ginac.de Git - cln.git/blob - src/integer/output/cl_I_bprint.cc
* */*: cl_istream -> std::istream, cl_ostream -> std::ostream.
[cln.git] / src / integer / output / cl_I_bprint.cc
1 // print_integer().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cln/integer_io.h"
8
9
10 // Implementation.
11
12 #include "cln/output.h"
13
14 namespace cln {
15
16 void print_integer (std::ostream& stream, const cl_print_number_flags& flags, const cl_I& z)
17 {
18         print_integer(stream,(const cl_print_real_flags&)flags,z);
19 }
20
21 }  // namespace cln