]> www.ginac.de Git - cln.git/blobdiff - src/float/sfloat/misc/cl_SF_max.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / float / sfloat / misc / cl_SF_max.cc
index 6098870d8007dfd77faffa3e3affbeed62d04073..4e2d5b743d7777f835df4774d9b4c1ed69987eb4 100644 (file)
@@ -4,12 +4,16 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_sfloat.h"
+#include "cln/sfloat.h"
 
 
 // Implementation.
 
+namespace cln {
+
 const cl_SF max (const cl_SF& x, const cl_SF& y)
 {
        return (x >= y ? x : y);
 }
+
+}  // namespace cln