diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2004-10-22 02:27:47 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2004-10-22 02:27:47 +0000 |
commit | 526f3d4a76195fe3d94cb7c77e0c40950a1f940d (patch) | |
tree | c97b87b2ac4e9bfc8c84147cff14d5e09fc5fd5b /oggwrite~ | |
parent | 52416b19cc5ce0e010d52a1dd8f02ef114de23cf (diff) |
#ifndef'ed malloc.h for MacOS X since the include breaks compilation there
svn path=/trunk/externals/pdogg/; revision=2138
Diffstat (limited to 'oggwrite~')
-rw-r--r-- | oggwrite~/oggwrite~.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/oggwrite~/oggwrite~.c b/oggwrite~/oggwrite~.c index 5654963..0fbbf5c 100644 --- a/oggwrite~/oggwrite~.c +++ b/oggwrite~/oggwrite~.c @@ -39,7 +39,9 @@ #include <stdlib.h>
#include <fcntl.h>
#include <sys/stat.h>
+#ifndef __APPLE__
#include <malloc.h>
+#endif
#include <ctype.h>
#include <time.h>
#ifdef UNIX
|