fix an improperly stringed file found by DrSpliff

This commit is contained in:
Bill Currie 2003-07-17 18:40:53 +00:00
parent 5481273639
commit a06c4e1708
1 changed files with 6 additions and 1 deletions

View File

@ -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"