mirror of
https://github.com/dhewm/dhewm3.git
synced 2025-03-21 18:21:08 +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
82a87863ff
commit
4927299cb9
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