diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-08-16 08:42:29 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-08-16 08:42:29 +0000 |
commit | 06858bf5cf5c5bbcb3b73c10f99ef72712e18d0d (patch) | |
tree | f631a99219fcc1d193d532c7138b68db7aa5c086 /scratcher~ | |
parent | ba8bed5cb5b6d21316842271648cf1d84f9d33d9 (diff) |
added explicit include for m_pd.h to be compatible with 0.37;excluded malloc.h for MacOS X because of compile troubles
svn path=/trunk/externals/unauthorized/; revision=861
Diffstat (limited to 'scratcher~')
-rw-r--r-- | scratcher~/scratcher~.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scratcher~/scratcher~.c b/scratcher~/scratcher~.c index 9095454..db37847 100644 --- a/scratcher~/scratcher~.c +++ b/scratcher~/scratcher~.c @@ -37,7 +37,9 @@ #include <stdlib.h> #include <fcntl.h> #include <sys/stat.h> +#ifndef MACOSX #include <malloc.h> +#endif #include <ctype.h> #include <pthread.h> #include <time.h> @@ -50,6 +52,7 @@ #endif #include <math.h> +#include <m_pd.h> #include "m_imp.h" #include "g_canvas.h" #include "t_tk.h" |