1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2024-12-22 17:47:38 +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>
#endif
#if defined __APPLE__
#include <stdlib.h>
#else
#include <malloc.h>
#endif
#include <new>