// float_digits().
// General includes.
#include "cl_sysdep.h"
// Specification.
#include "cln/ffloat.h"
// Implementation.
#include "cl_FF.h"
namespace cln {
MAYBE_INLINE
uintL float_digits (const cl_FF& x)
{
unused x;
return FF_mant_len+1; // 24
}
} // namespace cln