]> www.ginac.de Git - cln.git/blob - src/float/transcendental/cl_F_ln10_f.cc
Use paths relative the `src' directory in the #include directives.
[cln.git] / src / float / transcendental / cl_F_ln10_f.cc
1 // cl_ln10().
2
3 // General includes.
4 #include "base/cl_sysdep.h"
5
6 // Specification.
7 #include "float/transcendental/cl_F_tran.h"
8
9
10 // Implementation.
11
12 #include "float/cl_F.h"
13
14 namespace cln {
15
16 const cl_F cl_ln10 (float_format_t f)
17 {
18         floatformatcase((uintC)f
19         ,       return cl_SF_ln10();
20         ,       return cl_FF_ln10();
21         ,       return cl_DF_ln10();
22         ,       return cl_ln10(len);
23         );
24 }
25
26 }  // namespace cln