]> www.ginac.de Git - cln.git/blob - src/float/dfloat/misc/cl_DF_digits.cc
* Removed internal gmp/ directory and other traces of it like $GMP_INCLUDES.
[cln.git] / src / float / dfloat / misc / cl_DF_digits.cc
1 // float_digits().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cl_dfloat.h"
8
9
10 // Implementation.
11
12 #include "cl_DF.h"
13
14 MAYBE_INLINE
15 uintL float_digits (const cl_DF& x)
16 {
17         unused x;
18         return DF_mant_len+1; // 53
19 }