]> www.ginac.de Git - cln.git/blobdiff - src/real/elem/cl_R_minus.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / real / elem / cl_R_minus.cc
index ee2b105f0225b140476eea25ed63c4eee70333ab..3e89c6fe230e8ff00ba23d75c33144aceb2630fc 100644 (file)
@@ -4,14 +4,16 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_real.h"
+#include "cln/real.h"
 
 
 // Implementation.
 
 #include "cl_R.h"
-#include "cl_rational.h"
-#include "cl_float.h"
+#include "cln/rational.h"
+#include "cln/float.h"
+
+namespace cln {
 
 const cl_R operator- (const cl_R& x, const cl_R& y)
 {
@@ -21,3 +23,5 @@ const cl_R operator- (const cl_R& x, const cl_R& y)
 #define minus(a,b) a-b
 GEN_R_OP2_2(x,y, minus, return)
 }
+
+}  // namespace cln