]> www.ginac.de Git - cln.git/blob - src/float/lfloat/elem/cl_LF_minusp.cc
bump library version, since CLN doesn't export global object ctors any more.
[cln.git] / src / float / lfloat / elem / cl_LF_minusp.cc
1 // minusp().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cln/lfloat.h"
8
9
10 // Implementation.
11
12 #include "cl_LF.h"
13
14 namespace cln {
15
16 CL_INLINE bool CL_INLINE_DECL(minusp) (const cl_LF& x)
17 {
18         return -TheLfloat(x)->sign;
19 }
20
21 }  // namespace cln