]> www.ginac.de Git - cln.git/blobdiff - src/integer/elem/cl_I_minus1.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / integer / elem / cl_I_minus1.cc
index e7fd54a887ff960102918d62b4ee0ca261ecd608..d717e10f4bdbd72019c4705fa647272746827662 100644 (file)
@@ -4,7 +4,7 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_integer.h"
+#include "cln/integer.h"
 
 
 // Implementation.
@@ -12,6 +12,8 @@
 #include "cl_I.h"
 #include "cl_DS.h"
 
+namespace cln {
+
 const cl_I minus1 (const cl_I& x)
 {
        if (fixnump(x))
@@ -31,3 +33,5 @@ const cl_I minus1 (const cl_I& x)
           return DS_to_I(MSDptr,len); // wieder zum Integer machen
         }
 }
+
+}  // namespace cln