mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2024-12-22 09:38:56 +08:00
fix malloc.h missing from memdbgon.h on mac debug builds
This commit is contained in:
parent
0ef5d3d482
commit
8a7a0a5409
@ -33,7 +33,11 @@
|
||||
#include <wchar.h>
|
||||
#endif
|
||||
#include <string.h>
|
||||
#if defined __APPLE__
|
||||
#include <stdlib.h>
|
||||
#else
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
#include "commonmacros.h"
|
||||
#include "memalloc.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user