]> www.ginac.de Git - cln.git/blobdiff - src/float/dfloat/elem/cl_DF_minusp.cc
Finalize CLN 1.3.7 release.
[cln.git] / src / float / dfloat / elem / cl_DF_minusp.cc
index e708a8ea24b1258a11b0a4ebfba945bc7e41f274..cd316f8c90c02e008c388853e588d4755e86aa4f 100644 (file)
@@ -1,7 +1,7 @@
 // minusp().
 
 // General includes.
-#include "cl_sysdep.h"
+#include "base/cl_sysdep.h"
 
 // Specification.
 #include "cln/dfloat.h"
@@ -9,17 +9,16 @@
 
 // Implementation.
 
-#include "cl_DF.h"
+#include "float/dfloat/cl_DF.h"
 
 namespace cln {
 
-MAYBE_INLINE
-cl_boolean minusp (const cl_DF& x)
+CL_INLINE bool CL_INLINE_DECL(minusp) (const cl_DF& x)
 {
 #if (cl_word_size==64)
-       return (cl_boolean) ((sint64)TheDfloat(x)->dfloat_value_semhi < 0);
+       return (sint64)TheDfloat(x)->dfloat_value_semhi < 0;
 #else
-       return (cl_boolean) ((sint32)TheDfloat(x)->dfloat_value_semhi < 0);
+       return (sint32)TheDfloat(x)->dfloat_value_semhi < 0;
 #endif
 }