]> www.ginac.de Git - cln.git/blob - src/integer/elem/cl_I_zerop.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / integer / elem / cl_I_zerop.cc
1 // zerop().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cln/integer.h"
8
9
10 // Implementation.
11
12 #define zerop inline_zerop
13 #include "cl_I.h"
14 #undef zerop
15
16 namespace cln {
17
18 cl_boolean zerop (const cl_I& x)
19 {
20         return inline_zerop(x);
21 }
22
23 }  // namespace cln