mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 09:51:41 +00:00
sometimes, gcc 2.95 can be such a pain
This commit is contained in:
parent
0997d24dfd
commit
be50d0e15a
2 changed files with 6 additions and 2 deletions
|
@ -34,8 +34,6 @@
|
|||
|
||||
#include "QF/pr_comp.h"
|
||||
|
||||
#include <string.h>
|
||||
|
||||
//============================================================================
|
||||
|
||||
#define MAX_REGS 65536
|
||||
|
|
|
@ -33,6 +33,12 @@ static const char rcsid[] =
|
|||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
#ifdef HAVE_STRING_H
|
||||
# include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
# include <strings.h>
|
||||
#endif
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "def.h"
|
||||
|
|
Loading…
Reference in a new issue