mirror of
https://github.com/dhewm/dhewm3-sdk.git
synced 2024-11-24 13:31:18 +00:00
Include malloc.h for alloca for MinGW
Newer versions of MinGW do not seem to require this, but older ones do.
This commit is contained in:
parent
7d5c0e1fd7
commit
d0846bdae8
1 changed files with 3 additions and 0 deletions
|
@ -189,6 +189,9 @@ If you have questions concerning this license or the applicable additional terms
|
|||
// MSVC does not provide this C99 header
|
||||
#include <inttypes.h>
|
||||
#endif
|
||||
#if defined(__MINGW32__)
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdarg.h>
|
||||
|
|
Loading…
Reference in a new issue