]> www.ginac.de Git - cln.git/blobdiff - src/integer/output/cl_I_bprint.cc
2006-04-25 Bruno Haible <bruno@clisp.org>
[cln.git] / src / integer / output / cl_I_bprint.cc
index 84253bd2c871f297ea57fecb94a22abd13c5e064..d7183337abca970768ecc852c7ebf31a3b1d8961 100644 (file)
@@ -4,14 +4,18 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_integer_io.h"
+#include "cln/integer_io.h"
 
 
 // Implementation.
 
-#include "cl_output.h"
+#include "cln/output.h"
 
-void print_integer (cl_ostream stream, const cl_print_number_flags& flags, const cl_I& z)
+namespace cln {
+
+void print_integer (std::ostream& stream, const cl_print_number_flags& flags, const cl_I& z)
 {
        print_integer(stream,(const cl_print_real_flags&)flags,z);
 }
+
+}  // namespace cln