strings.h/string.h compile fixes

This commit is contained in:
Bill Currie 2001-03-08 19:50:50 +00:00
parent b68b6a4dd3
commit 8cca7c7dd9
3 changed files with 18 additions and 0 deletions

View file

@ -29,6 +29,12 @@
#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 "glquake.h"
#include "host.h"

View file

@ -33,6 +33,12 @@
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#ifdef HAVE_STRING_H
# include <string.h>
#endif
#ifdef HAVE_STRINGS_H
# include <strings.h>
#endif
#include <stdio.h>
#include <stdlib.h>

View file

@ -29,6 +29,12 @@
#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 <SDL_audio.h>
#include <SDL_byteorder.h>