]> www.ginac.de Git - cln.git/blob - src/float/transcendental/cl_F_exp1_def.cc
ee74b0583b7b955ad909240419b5eb431ba85e57
[cln.git] / src / float / transcendental / cl_F_exp1_def.cc
1 // exp1().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cln/float.h"
8
9
10 // Implementation.
11
12 #include "cl_F.h"
13 #include "cl_F_tran.h"
14
15 namespace cln {
16
17 const cl_F exp1 (void)
18 {
19         floatformatcase(default_float_format
20         ,       return cl_SF_exp1;
21         ,       return cl_FF_exp1;
22         ,       return cl_DF_exp1;
23         ,       return exp1(len);
24         );
25 }
26
27 }  // namespace cln