]> www.ginac.de Git - cln.git/blobdiff - tests/test_MI.cc
* configure.ac: Re-enable shared lib on non-MinGW platforms, sigh.
[cln.git] / tests / test_MI.cc
index 6ae77f634b44a3d4213a1a86fa330381a7350661..691565da7b9c4b3ca92ad3c5b6a15b7c4faa9aff 100644 (file)
@@ -1,4 +1,4 @@
-#include <cl_io.h>
+#include <iostream>
 #include "cl_macros.h"
 
 extern int test_MI_canonhom (int iterations);
@@ -10,7 +10,7 @@ extern int test_MI_div (int iterations);
 extern int test_MI_expt (int iterations);
 
 #define RUN(tester,iterations)  \
-       fprint(cl_stdout,"Testing "#tester"...\n"); \
+       std::cout << "Testing "#tester"..." << std::endl; \
        error |= tester (iterations);
 
 int test_MI (int iterations)