1
0
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:
Maksim Smolin 2019-01-22 16:58:39 -08:00
parent 0ef5d3d482
commit 8a7a0a5409

View File

@ -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"