]> www.ginac.de Git - cln.git/blobdiff - src/float/ffloat/misc/cl_FF_min.cc
Finalize CLN 1.3.7 release.
[cln.git] / src / float / ffloat / misc / cl_FF_min.cc
index a9e151302931e3ec420d0cbec01b2c27b31372a7..2ac4cc826b01fba9a849e7723511a3028b7b196d 100644 (file)
@@ -1,15 +1,19 @@
 // min().
 
 // General includes.
-#include "cl_sysdep.h"
+#include "base/cl_sysdep.h"
 
 // Specification.
-#include "cl_ffloat.h"
+#include "cln/ffloat.h"
 
 
 // Implementation.
 
+namespace cln {
+
 const cl_FF min (const cl_FF& x, const cl_FF& y)
 {
        return (x <= y ? x : y);
 }
+
+}  // namespace cln