mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-17 22:50:51 +00:00
fix an improperly stringed file found by DrSpliff
This commit is contained in:
parent
5481273639
commit
a06c4e1708
1 changed files with 6 additions and 1 deletions
|
@ -31,7 +31,12 @@
|
|||
static __attribute__ ((unused)) const char rcsid[] =
|
||||
"$Id$";
|
||||
|
||||
#include <string.h>
|
||||
#ifdef HAVE_STRING_H
|
||||
# include <string.h>
|
||||
#endif
|
||||
#ifdef HAVE_STRINGS_H
|
||||
# include <strings.h>
|
||||
#endif
|
||||
#include <stdio.h>
|
||||
|
||||
#include "qstring.h"
|
||||
|
|
Loading…
Reference in a new issue