diff options
author | 2016-02-08 12:55:10 +1100 | |
---|---|---|
committer | 2016-02-08 13:41:39 +1100 | |
commit | 503ae769d1bd7867bfdfb0535ecf1da547810cee (patch) | |
tree | d1141ebd9168ff9ced1150ecadd8d4a0ea7efeae /3rdparty/bx | |
parent | b9e37eb1dd12c99bd6b169aaee6cee3e37aad955 (diff) |
malloc.h is nonstandard, malloc/realloc/free are in stdlib.h
Diffstat (limited to '3rdparty/bx')
-rw-r--r-- | 3rdparty/bx/include/bx/allocator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/bx/include/bx/allocator.h b/3rdparty/bx/include/bx/allocator.h index 50d526535b6..3a6ca4f6e26 100644 --- a/3rdparty/bx/include/bx/allocator.h +++ b/3rdparty/bx/include/bx/allocator.h @@ -13,7 +13,7 @@ #include <new> #if BX_CONFIG_ALLOCATOR_CRT -# include <malloc.h> +# include <stdlib.h> #endif // BX_CONFIG_ALLOCATOR_CRT #if BX_CONFIG_ALLOCATOR_DEBUG |