mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-18 23:11:38 +00:00
Use stdlib.h instead of alloca.h.
While the manpage does say alloca.h, that's not very portable, it seems. stdlib.h seems to be better (at least for mingw, anyway)
This commit is contained in:
parent
9afeae0c47
commit
5bbb76194f
2 changed files with 2 additions and 2 deletions
|
@ -28,8 +28,8 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include <alloca.h>
|
||||
#include <math.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "QF/render.h"
|
||||
#include "QF/sys.h"
|
||||
|
|
|
@ -31,8 +31,8 @@
|
|||
#define NH_DEFINE
|
||||
#include "namehack.h"
|
||||
|
||||
#include <alloca.h>
|
||||
#include <math.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "QF/render.h"
|
||||
#include "QF/sys.h"
|
||||
|
|
Loading…
Reference in a new issue