diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-08-16 08:11:32 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-08-16 08:11:32 +0000 |
commit | 46c90cd0fc550312658d6c35025d2eb57da1519e (patch) | |
tree | 08a01acb3962cc4ceabd1b8ce71cb0f0abaec50f | |
parent | 8ff3f2989faffcfc9f732983fe66b596cf838501 (diff) |
excluded malloc.h for MacOS X because of compile troubles
svn path=/trunk/externals/unauthorized/; revision=854
-rw-r--r-- | cooled~/cooled~.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cooled~/cooled~.c b/cooled~/cooled~.c index 38c5a1a..0be998d 100644 --- a/cooled~/cooled~.c +++ b/cooled~/cooled~.c @@ -36,7 +36,9 @@ #include <stdlib.h> #include <fcntl.h> #include <sys/stat.h> +#ifndef MACOSX #include <malloc.h> +#endif #include <ctype.h> #include <pthread.h> #ifdef UNIX @@ -46,8 +48,8 @@ #define M_PI 3.14159265358979323846 #endif #include <math.h> +#include <m_pd.h> -#include "m_pd.h" #include "m_imp.h" #include "g_canvas.h" #include "t_tk.h" |