]> www.ginac.de Git - cln.git/blobdiff - src/float/ffloat/elem/cl_FF_compare.cc
* include/cln/modules.h (CL_JUMP_TO): Fix AMD64 brokenness.
[cln.git] / src / float / ffloat / elem / cl_FF_compare.cc
index 0e6fce8f8b3da8abd0636d2110548feab3385739..6633c494d01faf7f4000946824f6fe04634f170e 100644 (file)
@@ -1,17 +1,19 @@
-// cl_compare().
+// compare().
 
 // General includes.
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_ffloat.h"
+#include "cln/ffloat.h"
 
 
 // Implementation.
 
 #include "cl_FF.h"
 
-cl_signean cl_compare (const cl_FF& x, const cl_FF& y)
+namespace cln {
+
+cl_signean compare (const cl_FF& x, const cl_FF& y)
 {
 // Methode:
 // x und y haben verschiedenes Vorzeichen ->
@@ -46,3 +48,5 @@ cl_signean cl_compare (const cl_FF& x, const cl_FF& y)
             }
         }
 }
+
+}  // namespace cln