diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-08-18 01:09:48 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-08-18 01:09:48 +0000 |
commit | d1402377b850f57b2a13ee64383abb519952fd8e (patch) | |
tree | 557b4fee0647704d94bfdb5af107ff866f9e315b /sonogram~ | |
parent | 2ca86d97a82dbea3c2ea1cdfb07ba5bae4d8a5ac (diff) |
excluded malloc.h for MacOS X because of compile troubles; added explicit include for m_pd.h to be compatible with 0.37
svn path=/trunk/externals/unauthorized/; revision=882
Diffstat (limited to 'sonogram~')
-rw-r--r-- | sonogram~/sonogram~-joge.c | 3 | ||||
-rw-r--r-- | sonogram~/sonogram~-yves.c | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/sonogram~/sonogram~-joge.c b/sonogram~/sonogram~-joge.c index 6fc2153..fc70b73 100644 --- a/sonogram~/sonogram~-joge.c +++ b/sonogram~/sonogram~-joge.c @@ -37,7 +37,9 @@ #include <stdlib.h> #include <fcntl.h> #include <sys/stat.h> +#ifndef MACOSX #include <malloc.h> +#endif #include <ctype.h> #ifdef UNIX #include <unistd.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" diff --git a/sonogram~/sonogram~-yves.c b/sonogram~/sonogram~-yves.c index 0d2a721..4459d9e 100644 --- a/sonogram~/sonogram~-yves.c +++ b/sonogram~/sonogram~-yves.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> #ifdef UNIX @@ -48,6 +50,7 @@ #endif #include <math.h> +#include <m_pd.h> #include "m_imp.h" #include "g_canvas.h" #include "t_tk.h" |