]> www.ginac.de Git - cln.git/blobdiff - src/integer/output/cl_I_print_string.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / integer / output / cl_I_print_string.cc
index 28d41ad0a97b2df60f02025aadb1df77051b0d53..b6cb46582b64e344699d12bbb6445ba98c5abc1e 100644 (file)
@@ -4,7 +4,7 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_integer_io.h"
+#include "cln/integer_io.h"
 
 
 // Implementation.
@@ -13,6 +13,8 @@
 #include "cl_DS.h"
 #include "cl_sstring.h"
 
+namespace cln {
+
 char * print_integer_to_string (unsigned int base, const cl_I& z)
 {
        var cl_boolean minus_p = cl_false;
@@ -38,3 +40,5 @@ char * print_integer_to_string (unsigned int base, const cl_I& z)
        var char* result = cl_sstring(ergptr,erglen); // Ziffern in String schreiben
        return result;
 }
+
+}  // namespace cln