/me makes a not to pay closer attention to ifndef vs ifdef

This commit is contained in:
Bill Currie 2001-08-19 22:13:03 +00:00
parent 7dccb4388d
commit c577657e8e
1 changed files with 6 additions and 2 deletions

View File

@ -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>