]> www.ginac.de Git - cln.git/blobdiff - src/real/misc/cl_R_max.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / real / misc / cl_R_max.cc
index b3538876fb94979ae5371f7942fee0f76df5001d..85607092d6f542606b3230814da0f428513313f8 100644 (file)
@@ -4,12 +4,16 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_real.h"
+#include "cln/real.h"
 
 
 // Implementation.
 
+namespace cln {
+
 const cl_R max (const cl_R& x, const cl_R& y)
 {
        return (x >= y ? x : y);
 }
+
+}  // namespace cln