X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Finteger%2Felem%2Fcl_I_minusp.cc;h=883bb9ced2ebab754cd5414dd789442ee48ff225;hb=8169a19b38c42588b39b21dae5bdb964e2f6b8c6;hp=120c1dd99b713795901c924e043e77affb71df84;hpb=850abfde7f0d985ba01526c346bcd0d733562943;p=cln.git diff --git a/src/integer/elem/cl_I_minusp.cc b/src/integer/elem/cl_I_minusp.cc index 120c1dd..883bb9c 100644 --- a/src/integer/elem/cl_I_minusp.cc +++ b/src/integer/elem/cl_I_minusp.cc @@ -1,7 +1,7 @@ // minusp(). // General includes. -#include "cl_sysdep.h" +#include "base/cl_sysdep.h" // Specification. #include "cln/integer.h" @@ -10,12 +10,12 @@ // Implementation. #define minusp inline_minusp -#include "cl_I.h" +#include "integer/cl_I.h" #undef minusp namespace cln { -cl_boolean minusp (const cl_I& x) +bool minusp (const cl_I& x) { return inline_minusp(x); }