]> www.ginac.de Git - cln.git/blob - src/integer/elem/cl_I_minusp.cc
Use paths relative the `src' directory in the #include directives.
[cln.git] / src / integer / elem / cl_I_minusp.cc
1 // minusp().
2
3 // General includes.
4 #include "base/cl_sysdep.h"
5
6 // Specification.
7 #include "cln/integer.h"
8
9
10 // Implementation.
11
12 #define minusp inline_minusp
13 #include "integer/cl_I.h"
14 #undef minusp
15
16 namespace cln {
17
18 bool minusp (const cl_I& x)
19 {
20         return inline_minusp(x);
21 }
22
23 }  // namespace cln