fix up <> vs "" in #includes

This commit is contained in:
Bill Currie 2000-12-30 03:07:15 +00:00
parent 60fe4aea40
commit f29ea7f1d3
8 changed files with 24 additions and 23 deletions

View File

@ -30,9 +30,7 @@
#ifndef _MDFOUR_H #ifndef _MDFOUR_H
#define _MDFOUR_H #define _MDFOUR_H
#ifndef _UINT32_H #include "uint32.h"
#include <uint32.h>
#endif
struct mdfour { struct mdfour {
uint32 A, B, C, D; uint32 A, B, C, D;

View File

@ -31,7 +31,7 @@
#ifndef _QARGS_H #ifndef _QARGS_H
#define _QARGS_H #define _QARGS_H
#include <qtypes.h> #include "qtypes.h"
extern int com_argc; extern int com_argc;
extern char **com_argv; extern char **com_argv;

View File

@ -31,7 +31,7 @@
#define _QUAKEIO_H #define _QUAKEIO_H
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
# include <config.h> # include "config.h"
#endif #endif
#include <stdio.h> #include <stdio.h>

View File

@ -30,7 +30,7 @@
#define __ver_check_h_ #define __ver_check_h_
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
# include <config.h> # include "config.h"
#endif #endif
/* /*

View File

@ -32,10 +32,10 @@
#include <fcntl.h> #include <fcntl.h>
#ifdef HAVE_STRING_H #ifdef HAVE_STRING_H
#include "string.h" #include <string.h>
#endif #endif
#ifdef HAVE_STRINGS_H #ifdef HAVE_STRINGS_H
#include "strings.h" #include <strings.h>
#endif #endif
#include <errno.h> #include <errno.h>
#ifdef HAVE_SYS_IOCTL_H #ifdef HAVE_SYS_IOCTL_H

View File

@ -33,10 +33,10 @@
# include <windows.h> # include <windows.h>
#endif #endif
#ifdef HAVE_STRING_H #ifdef HAVE_STRING_H
#include "string.h" #include <string.h>
#endif #endif
#ifdef HAVE_STRINGS_H #ifdef HAVE_STRINGS_H
#include "strings.h" #include <strings.h>
#endif #endif
#include <SDL.h> #include <SDL.h>

View File

@ -30,7 +30,17 @@
# include "config.h" # include "config.h"
#endif #endif
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
#include <ctype.h> #include <ctype.h>
#include <netinet/in.h>
#ifdef HAVE_WINSOCK_H
#include <winsock.h>
#endif
#include "bothdefs.h" #include "bothdefs.h"
#include "buildnum.h" #include "buildnum.h"
@ -42,6 +52,7 @@
#include "cl_main.h" #include "cl_main.h"
#include "cl_parse.h" #include "cl_parse.h"
#include "cl_pred.h" #include "cl_pred.h"
#include "cl_slist.h"
#include "cl_tent.h" #include "cl_tent.h"
#include "client.h" #include "client.h"
#include "cmd.h" #include "cmd.h"
@ -49,6 +60,9 @@
#include "cvar.h" #include "cvar.h"
#include "draw.h" #include "draw.h"
#include "host.h" #include "host.h"
#ifdef _WIN32
#include "in_win.h"
#endif
#include "input.h" #include "input.h"
#include "keys.h" #include "keys.h"
#include "menu.h" #include "menu.h"
@ -68,29 +82,18 @@
#include "vid.h" #include "vid.h"
#include "view.h" #include "view.h"
#include "va.h" #include "va.h"
#include "winquake.h"
#ifdef __sun #ifdef __sun
/* Sun's model_t in sys/model.h conflicts w/ Quake's model_t */ /* Sun's model_t in sys/model.h conflicts w/ Quake's model_t */
#define model_t sunmodel_t #define model_t sunmodel_t
#endif #endif
#ifdef _WIN32
#include "winquake.h"
#include "winsock.h"
#include "in_win.h"
#else
#include <netinet/in.h>
#endif
#ifdef __sun #ifdef __sun
#undef model_t #undef model_t
#endif #endif
#include <cl_slist.h>
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
void CL_RemoveQFInfoKeys (); void CL_RemoveQFInfoKeys ();
// we need to declare some mouse variables here, because the menu system // we need to declare some mouse variables here, because the menu system

View File

@ -30,7 +30,7 @@
#define QUAKEWORLD #define QUAKEWORLD
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
# include <config.h> # include "config.h"
#endif #endif
#include <ctype.h> #include <ctype.h>