]> 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 48f39dee42aa5213e615077a12285e10bace5639..5aeab13508fd365b483b087d85545882c64a87a6 100644 (file)
@@ -3,9 +3,16 @@
 #include <cln/float.h>
 #include <cln/real.h>
 #include <cln/random.h>
-#include <stdlib.h>
-#include <string.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--)