]> www.ginac.de Git - cln.git/blobdiff - src/real/division/cl_R_fceil22.cc
Use paths relative the `src' directory in the #include directives.
[cln.git] / src / real / division / cl_R_fceil22.cc
index 0e9f53decab7a472f2039769f2f7009e4819d3f7..ebbdf2c4506f3735c2bef9689b148595f8fd2036 100644 (file)
@@ -1,16 +1,18 @@
 // fceiling2().
 
 // General includes.
-#include "cl_sysdep.h"
+#include "base/cl_sysdep.h"
 
 // Specification.
-#include "cl_real.h"
+#include "cln/real.h"
 
 
 // Implementation.
 
-#include "cl_R.h"
-#include "cl_R_div_t.h"
+#include "real/cl_R.h"
+#include "real/division/cl_R_div_t.h"
+
+namespace cln {
 
 const cl_R_fdiv_t fceiling2 (const cl_R& x, const cl_R& y)
 {
@@ -32,3 +34,5 @@ const cl_R_fdiv_t fceiling2 (const cl_R& x, const cl_R& y)
        var cl_R& r = q_r.remainder;
        return cl_R_fdiv_t(q,y*r);
 }
+
+}  // namespace cln