1 // minusp().
2 
3 // General includes.
4 #include "base/cl_sysdep.h"
5 
6 // Specification.
7 #include "cln/lfloat.h"
8 
9 
10 // Implementation.
11 
12 #include "float/lfloat/cl_LF.h"
13 
14 namespace cln {
15 
CL_INLINE_DECL(minusp)16 CL_INLINE bool CL_INLINE_DECL(minusp) (const cl_LF& x)
17 {
18 	return -TheLfloat(x)->sign;
19 }
20 
21 }  // namespace cln
22