mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 10:22:45 -04:00
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…
x
Reference in New Issue
Block a user