Remove unneeded include of <io.h>
robs [Mon, 18 Jun 2001 14:10:30 +0000 (14:10 +0000)]
include/fcgios.h

index c6a5e5e..4b1337e 100755 (executable)
 
 #include "fcgi_config.h"
 
-#ifdef _WIN32
-#include <io.h>
-#endif
-
 #ifdef HAVE_SYS_TIME_H
 #include <sys/time.h>
 #endif
@@ -34,24 +30,18 @@ extern "C" {
 
 
 #ifdef _WIN32
-
 #define OS_Errno GetLastError()
 #define OS_SetErrno(err) SetLastError(err)
-
 #ifndef DLLAPI
 #define DLLAPI __declspec(dllimport)
 #endif
-
 #ifndef O_NONBLOCK
 #define O_NONBLOCK     0x0004  /* no delay */
 #endif
-
 #else /* !_WIN32 */
-
 #define DLLAPI
 #define OS_Errno errno
 #define OS_SetErrno(err) errno = (err)
-
 #endif /* !_WIN32 */
 
 /* This is the initializer for a "struct timeval" used in a select() call