]> www.ginac.de Git - cln.git/blobdiff - src/float/transcendental/cl_F_exp1_f.cc
Finalize CLN 1.3.7 release.
[cln.git] / src / float / transcendental / cl_F_exp1_f.cc
index 4e23f0a5a5d8e1cda1e223e071680b0b67229c36..14469f3e3e4c054813620127e9c1460a0cb72659 100644 (file)
@@ -1,7 +1,7 @@
 // exp1().
 
 // General includes.
-#include "cl_sysdep.h"
+#include "base/cl_sysdep.h"
 
 // Specification.
 #include "cln/float.h"
@@ -9,17 +9,17 @@
 
 // Implementation.
 
-#include "cl_F_tran.h"
-#include "cl_F.h"
+#include "float/transcendental/cl_F_tran.h"
+#include "float/cl_F.h"
 
 namespace cln {
 
 const cl_F exp1 (float_format_t f)
 {
-       floatformatcase((uintL)f
-       ,       return cl_SF_exp1;
-       ,       return cl_FF_exp1;
-       ,       return cl_DF_exp1;
+       floatformatcase((uintC)f
+       ,       return cl_SF_exp1();
+       ,       return cl_FF_exp1();
+       ,       return cl_DF_exp1();
        ,       return exp1(len);
        );
 }