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