]> www.ginac.de Git - cln.git/blobdiff - src/float/lfloat/misc/cl_LF_max.cc
Use paths relative the `src' directory in the #include directives.
[cln.git] / src / float / lfloat / misc / cl_LF_max.cc
index e45000ebee6d3322aac7ebdd2591adfddf96464f..c3b81be05a93d926129b86897f1bd3691a26affe 100644 (file)
@@ -1,15 +1,19 @@
 // max().
 
 // General includes.
-#include "cl_sysdep.h"
+#include "base/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