1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-01-04 00:23:25 +08:00

Include stdlib.h instead of malloc.h on Mac.

This commit is contained in:
Nicholas Hastings 2013-10-13 11:28:49 -04:00
parent d4c0dc2f11
commit fd59de0881

View File

@ -55,7 +55,11 @@
#include <time.h> #include <time.h>
#endif #endif
#if defined __APPLE__
#include <stdlib.h>
#else
#include <malloc.h> #include <malloc.h>
#endif
#include <new> #include <new>