// minusp(). // General includes. #include "cl_sysdep.h" // Specification. #include "cln/lfloat.h" // Implementation. #include "cl_LF.h" namespace cln { MAYBE_INLINE bool minusp (const cl_LF& x) { return -TheLfloat(x)->sign; } } // namespace cln