include string.h and or strings.h

This commit is contained in:
Bill Currie 2000-10-16 15:34:53 +00:00
parent d716829478
commit a4ccdad288
8 changed files with 61 additions and 2 deletions

View file

@ -34,6 +34,15 @@
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <math.h>
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
#include "cvar.h"
#include "client.h"
#include "pmove.h"
@ -42,8 +51,6 @@
#include "console.h"
#include "commdef.h"
#include <math.h>
#define PM_SPECTATORMAXSPEED 500
#define PM_STOPSPEED 100
#define PM_MAXSPEED 320

View file

@ -33,6 +33,13 @@
# include <config.h>
#endif
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
#include "model.h"
#include "qendian.h"
#include "server.h"

View file

@ -33,6 +33,13 @@
# include <config.h>
#endif
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
#include "model.h"
#include "qendian.h"
#include "glquake.h"

View file

@ -33,6 +33,13 @@
# include <config.h>
#endif
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
#include "model.h"
#include "quakefs.h"
#include "cvar.h"

View file

@ -33,6 +33,13 @@
# include <config.h>
#endif
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
#include "r_local.h"
#include "sys.h"
#include "console.h"

View file

@ -29,6 +29,14 @@
#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 "msg.h"
#include "net.h"
#include "protocol.h"

View file

@ -29,6 +29,14 @@
#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 "sizebuf.h"
#include "sys.h"

View file

@ -29,6 +29,14 @@
#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 "sys.h"
#include "wad.h"
#include "quakefs.h"