]> www.ginac.de Git - cln.git/blobdiff - src/float/lfloat/misc/cl_LF_min.cc
2006-04-25 Bruno Haible <bruno@clisp.org>
[cln.git] / src / float / lfloat / misc / cl_LF_min.cc
index b58bb42da98d859e4a8afd1740d1c76b80ef0f04..60ca93fc30585465d49edae474db957923fc8b4d 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 min (const cl_LF& x, const cl_LF& y)
 {
        return (x <= y ? x : y);
 }
+
+}  // namespace cln