aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2006-09-24 23:05:22 +0000
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 13:53:22 +0200
commit56d0269c783905ed6a88169378b16a64119d4d7d (patch)
tree0b714ffff652ecab15da71345647467c1ac5814a
parentc91ca99adfb0a87a9a5073bf2ef7ec44aecb9158 (diff)
MinGW cleanups
svn path=/trunk/externals/maxlib/; revision=6013
-rw-r--r--src/chord.c2
-rw-r--r--src/gestalt.c2
-rw-r--r--src/rhythm.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/chord.c b/src/chord.c
index 142576c..a1839d3 100644
--- a/src/chord.c
+++ b/src/chord.c
@@ -25,7 +25,7 @@
#include "m_pd.h"
#include <stdio.h>
#include <string.h>
-#ifdef UNIX
+#ifndef _WIN32
#include <stdlib.h>
#endif
diff --git a/src/gestalt.c b/src/gestalt.c
index 523edb5..3155206 100644
--- a/src/gestalt.c
+++ b/src/gestalt.c
@@ -25,7 +25,7 @@
#include "m_pd.h"
#include <math.h>
#include <stdio.h>
-#ifdef UNIX
+#ifndef _WIN32
#include <stdlib.h>
#endif
diff --git a/src/rhythm.c b/src/rhythm.c
index 1f50cf0..197a143 100644
--- a/src/rhythm.c
+++ b/src/rhythm.c
@@ -26,7 +26,7 @@
#include "m_pd.h"
#include <stdio.h>
#include <math.h>
-#ifdef UNIX
+#ifndef _WIN32
#include <stdlib.h>
#endif