mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 06:42:26 +00:00
/me makes a not to pay closer attention to ifndef vs ifdef
This commit is contained in:
parent
7dccb4388d
commit
c577657e8e
1 changed files with 6 additions and 2 deletions
|
@ -38,10 +38,14 @@
|
|||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#include <limits.h>
|
||||
#ifdef HAVE_IO_H
|
||||
# include <io.h>
|
||||
#endif
|
||||
#ifdef HAVE_CONIO_H
|
||||
# include <conio.h>
|
||||
#endif
|
||||
|
||||
#ifndef _WIN32
|
||||
# include <io.h>
|
||||
# include <conio.h>
|
||||
# include <unistd.h>
|
||||
# include <stdarg.h>
|
||||
# include <string.h>
|
||||
|
|
Loading…
Reference in a new issue