summaryrefslogtreecommitdiff
path: root/test/c/mandelbrot.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/c/mandelbrot.c')
-rw-r--r--test/c/mandelbrot.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/c/mandelbrot.c b/test/c/mandelbrot.c
index 93aa8ac..f4c0db1 100644
--- a/test/c/mandelbrot.c
+++ b/test/c/mandelbrot.c
@@ -10,7 +10,11 @@
compile flags: -O3 -ffast-math -march=pentium4 -funroll-loops
*/
+#ifdef __COMPCERT__
+#include <compcert_stdio.h>
+#else
#include <stdio.h>
+#endif
#include <stdlib.h>
int main (int argc, char **argv)