]> www.ginac.de Git - cln.git/blobdiff - tests/timeexp1.cc
cmake build: moved cl_config.h.cmake to `autoconf`
[cln.git] / tests / timeexp1.cc
index ca840f58130ed8859d970328f56df3f5297a5d50..5aeab13508fd365b483b087d85545882c64a87a6 100644 (file)
@@ -1,11 +1,18 @@
-#include <cl_number.h>
-#include <cl_io.h>
-#include <cl_float.h>
-#include <cl_real.h>
-#include <cl_random.h>
-#include <stdlib.h>
-#include <string.h>
-#include <cl_timing.h>
+#include <cln/number.h>
+#include <cln/io.h>
+#include <cln/float.h>
+#include <cln/real.h>
+#include <cln/random.h>
+#include <cstdlib>
+#include <cstring>
+#include <cln/timing.h>
+namespace cln
+{
+// FIXME: don't use internal functions!
+extern cl_LF compute_exp1 (uintC len);
+}
+
+using namespace cln;
 
 int main (int argc, char * argv[])
 {
@@ -17,7 +24,6 @@ int main (int argc, char * argv[])
        if (argc < 2)
                exit(1);
        uintL len = atoi(argv[1]);
-       extern cl_LF compute_exp1 (uintC len);
        cl_LF p;
        { CL_TIMING;
          for (int rep = repetitions; rep > 0; rep--)