// minusp(). // General includes. #include "cl_sysdep.h" // Specification. #include "cln/sfloat.h" // Implementation. #include "cl_SF.h" namespace cln { MAYBE_INLINE bool minusp (const cl_SF& x) { return (x.word & bit(SF_sign_shift)) != 0; } } // namespace cln