aboutsummaryrefslogtreecommitdiff
path: root/mandelbrot.c
diff options
context:
space:
mode:
Diffstat (limited to 'mandelbrot.c')
-rw-r--r--mandelbrot.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/mandelbrot.c b/mandelbrot.c
index 0b301cc..2c1d3f0 100644
--- a/mandelbrot.c
+++ b/mandelbrot.c
@@ -2,8 +2,10 @@
#include "m_pd.h"
#include <sys/stat.h>
#include <stdio.h>
-#include <unistd.h>
#include <string.h>
+#ifndef NT
+#include <unistd.h>
+#endif
#ifdef NT
#pragma warning( disable : 4244 )