]> www.ginac.de Git - cln.git/blob - src/float/output/cl_F_cprint.cc
Fix integer input with leading zeros in power-of-two base.
[cln.git] / src / float / output / cl_F_cprint.cc
1 // print_float().
2
3 // General includes.
4 #include "base/cl_sysdep.h"
5
6 // Specification.
7 #include "cln/float_io.h"
8
9
10 // Implementation.
11
12 #include "cln/output.h"
13
14 namespace cln {
15
16 void print_float (std::ostream& stream, const cl_print_real_flags& flags, const cl_F& z)
17 {
18         print_float(stream,(const cl_print_float_flags&)flags,z);
19 }
20
21 }  // namespace cln