]> www.ginac.de Git - cln.git/blobdiff - src/integer/bitwise/cl_I_dpb.cc
* Cumulative patch including Bruno's work on large fixnums on 64 bit machines.
[cln.git] / src / integer / bitwise / cl_I_dpb.cc
index fc642255bd82dc6d12047d8cfe459fa6527cdb1a..03dded7a7777520a6081fd3951fe38bd29f829f9 100644 (file)
@@ -4,14 +4,16 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_integer.h"
+#include "cln/integer.h"
 
 
 // Implementation.
 
-#include "cl_integer.h"
+#include "cln/integer.h"
 #include "cl_I.h"
 
+namespace cln {
+
 const cl_I dpb (const cl_I& newbyte, const cl_I& n, const cl_byte& b)
 {
       // Methode:
@@ -19,3 +21,5 @@ const cl_I dpb (const cl_I& newbyte, const cl_I& n, const cl_byte& b)
       // = (DEPOSIT-FIELD (ASH newbyte p) (byte s p) integer)
       return deposit_field(ash(newbyte,b.position),n,b);
 }
+
+}  // namespace cln