]> www.ginac.de Git - cln.git/blobdiff - src/float/lfloat/misc/cl_LF_max.cc
2006-04-25 Bruno Haible <bruno@clisp.org>
[cln.git] / src / float / lfloat / misc / cl_LF_max.cc
index e45000ebee6d3322aac7ebdd2591adfddf96464f..3b8729eba7fc71c11f8c0c4dd5024848a1c7a07e 100644 (file)
@@ -4,12 +4,16 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_lfloat.h"
+#include "cln/lfloat.h"
 
 
 // Implementation.
 
+namespace cln {
+
 const cl_LF max (const cl_LF& x, const cl_LF& y)
 {
        return (x >= y ? x : y);
 }
+
+}  // namespace cln