]> www.ginac.de Git - cln.git/blobdiff - src/float/lfloat/misc/cl_LF_sign.cc
* */*: Convert encoding from ISO 8859-1 to UTF-8.
[cln.git] / src / float / lfloat / misc / cl_LF_sign.cc
index 0d8787f799388b6ef194f64391aa6dea98c5b3f9..5fa601a0c6984cd0430790fd50dc36b85b62633e 100644 (file)
@@ -4,7 +4,7 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_lfloat.h"
+#include "cln/lfloat.h"
 
 
 // Implementation.
 #define MAYBE_INLINE inline
 #include "cl_LF_minusp.cc"
 
+namespace cln {
+
 MAYBE_INLINE2
 const cl_LF float_sign (const cl_LF& x)
 {
 // Methode: x>=0 -> Ergebnis 1.0; x<0 -> Ergebnis -1.0
        return encode_LF1s(TheLfloat(x)->sign,TheLfloat(x)->len);
 }
+
+}  // namespace cln