]> www.ginac.de Git - cln.git/blob - src/float/ffloat/elem/cl_FF_minusp.cc
Use paths relative the `src' directory in the #include directives.
[cln.git] / src / float / ffloat / elem / cl_FF_minusp.cc
1 // minusp().
2
3 // General includes.
4 #include "base/cl_sysdep.h"
5
6 // Specification.
7 #include "cln/ffloat.h"
8
9
10 // Implementation.
11
12 #include "float/ffloat/cl_FF.h"
13
14 namespace cln {
15
16 CL_INLINE bool CL_INLINE_DECL(minusp) (const cl_FF& x)
17 {
18         return (sint32)cl_ffloat_value(x) < 0;
19 }
20
21 }  // namespace cln