OSX has sys/malloc.h, not malloc.h
This commit is contained in:
parent
b74fe3fd33
commit
ef4a9038df
|
|
@ -33,8 +33,12 @@
|
|||
#include <unistd.h>
|
||||
#define _putenv putenv
|
||||
#endif
|
||||
#ifdef __APPLE__
|
||||
#include <sys/malloc.h>
|
||||
#else
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
#include <stdlib.h>
|
||||
#include <malloc.h>
|
||||
#include <stdio.h>
|
||||
#include <signal.h>
|
||||
#define PATH_MAX 1024
|
||||
|
|
|
|||
Loading…
Reference in New Issue