]> www.ginac.de Git - cln.git/blobdiff - src/float/sfloat/elem/cl_SF_to_I.cc
Use paths relative the `src' directory in the #include directives.
[cln.git] / src / float / sfloat / elem / cl_SF_to_I.cc
index 5c965a3b9f9aaa0f6d463c1c4d024ad65868b9ea..ab4213b816533de077ae0efd2b226b4562b65e32 100644 (file)
@@ -1,16 +1,18 @@
 // cl_SF_to_I().
 
 // General includes.
-#include "cl_sysdep.h"
+#include "base/cl_sysdep.h"
 
 // Specification.
-#include "cl_SF.h"
+#include "float/sfloat/cl_SF.h"
 
 
 // Implementation.
 
-#include "cl_integer.h"
-#include "cl_I.h"
+#include "cln/integer.h"
+#include "integer/cl_I.h"
+
+namespace cln {
 
 const cl_I cl_SF_to_I (const cl_SF& x)
 {
@@ -27,3 +29,5 @@ const cl_I cl_SF_to_I (const cl_SF& x)
                   exp
                 );
 }
+
+}  // namespace cln