]> www.ginac.de Git - cln.git/blobdiff - src/rational/elem/cl_RA_plusp.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / rational / elem / cl_RA_plusp.cc
index 5461caa6d62347cd57a0d26bfcec01d4b24310ce..e0c99aef29bf9ef6647e0c939753a82a01f0f885 100644 (file)
@@ -4,7 +4,7 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_rational.h"
+#include "cln/rational.h"
 
 
 // Implementation.
@@ -15,6 +15,8 @@
 #undef zerop
 #undef minusp
 
+namespace cln {
+
 cl_boolean plusp (const cl_RA& x)
 {
        if (inline_minusp(x))
@@ -24,3 +26,5 @@ cl_boolean plusp (const cl_RA& x)
        else
                return cl_true; // sonst ist x>0.
 }
+
+}  // namespace cln