]> www.ginac.de Git - cln.git/blobdiff - src/real/division/cl_R_ffloor2.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / real / division / cl_R_ffloor2.cc
index 0a735a427248280d2b35630f3904309a5b526a28..d6b4a831216fe6db8163347d70e7e3b79206a6e1 100644 (file)
@@ -4,7 +4,7 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_real.h"
+#include "cln/real.h"
 
 
 // Implementation.
 
 #if 0 // 2 type dispatches
 
-#include "cl_rational.h"
-#include "cl_float.h"
+#include "cln/rational.h"
+#include "cln/float.h"
 #include "cl_R_div_t.h"
 
+namespace cln {
+
 const cl_R_fdiv_t ffloor2 (const cl_R& x)
 {
        if (rationalp(x)) {
@@ -32,16 +34,20 @@ const cl_R_fdiv_t ffloor2 (const cl_R& x)
        }
 }
 
+}  // namespace cln
+
 #else // 1 type dispatch
 
 #include "cl_RA.h"
-#include "cl_integer.h"
-#include "cl_sfloat.h"
-#include "cl_ffloat.h"
-#include "cl_dfloat.h"
-#include "cl_lfloat.h"
+#include "cln/integer.h"
+#include "cln/sfloat.h"
+#include "cln/ffloat.h"
+#include "cln/dfloat.h"
+#include "cln/lfloat.h"
 #include "cl_LF.h"
 
+namespace cln {
+
 const cl_R_fdiv_t ffloor2 (const cl_R& x)
 {
        realcase6(x
@@ -59,4 +65,6 @@ const cl_R_fdiv_t ffloor2 (const cl_R& x)
        );
 }
 
+}  // namespace cln
+
 #endif