]> www.ginac.de Git - cln.git/blob - src/float/transcendental/cl_F_ln2_f.cc
Get rid of CL_REQUIRE/CL_PROVIDE(cl_F_ln2_var).
[cln.git] / src / float / transcendental / cl_F_ln2_f.cc
1 // cl_ln2().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cl_F_tran.h"
8
9
10 // Implementation.
11
12 #include "cl_F.h"
13
14 namespace cln {
15
16 const cl_F cl_ln2 (float_format_t f)
17 {
18         floatformatcase((uintC)f
19         ,       return cl_SF_ln2();
20         ,       return cl_FF_ln2();
21         ,       return cl_DF_ln2();
22         ,       return cl_ln2(len);
23         );
24 }
25
26 }  // namespace cln