mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 14:52:08 +00:00
Are these uninst.h, timeb.h really needed here?
This commit is contained in:
parent
1d2e83bb66
commit
cc0e3dfbb5
2 changed files with 7 additions and 0 deletions
|
@ -34,8 +34,10 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#ifndef WIN32
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "cl_slist.h"
|
#include "cl_slist.h"
|
||||||
#include "bothdefs.h"
|
#include "bothdefs.h"
|
||||||
|
|
|
@ -30,8 +30,10 @@
|
||||||
# include "config.h"
|
# include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef _WIN32
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "host.h"
|
#include "host.h"
|
||||||
#include "sys.h"
|
#include "sys.h"
|
||||||
|
@ -53,7 +55,10 @@
|
||||||
#include "cl_main.h"
|
#include "cl_main.h"
|
||||||
#include "cl_input.h"
|
#include "cl_input.h"
|
||||||
#include "net.h"
|
#include "net.h"
|
||||||
|
|
||||||
|
#ifndef _WIN32
|
||||||
#include <netinet/in.h>
|
#include <netinet/in.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
void (*vid_menudrawfn) (void);
|
void (*vid_menudrawfn) (void);
|
||||||
void (*vid_menukeyfn) (int key);
|
void (*vid_menukeyfn) (int key);
|
||||||
|
|
Loading…
Reference in a new issue