bah, bloody string builtins in gcc 2.95

This commit is contained in:
Bill Currie 2002-08-20 19:31:56 +00:00
parent 099e2739b5
commit 094cf08a67
1 changed files with 7 additions and 0 deletions

View File

@ -34,6 +34,13 @@ static const char rcsid[] =
# include "config.h"
#endif
#ifdef HAVE_STRING_H
# include <string.h>
#endif
#ifdef HAVE_STRINGS_H
# include <strings.h>
#endif
#include <stdlib.h>
#include "QF/pr_obj.h"