]> www.ginac.de Git - cln.git/blob - src/float/sfloat/misc/cl_SF_digits.cc
Use paths relative the `src' directory in the #include directives.
[cln.git] / src / float / sfloat / misc / cl_SF_digits.cc
1 // float_digits().
2
3 // General includes.
4 #include "base/cl_sysdep.h"
5
6 // Specification.
7 #include "cln/sfloat.h"
8
9
10 // Implementation.
11
12 #include "float/sfloat/cl_SF.h"
13
14 namespace cln {
15
16 CL_INLINE uintC CL_INLINE_DECL(float_digits) (const cl_SF& x)
17 {
18         unused x;
19         return SF_mant_len+1; // 17
20 }
21
22 }  // namespace cln