[svn-r3276]

Purpose:
    windows bug fix
Description:
     need extra header files for windows
Solution:
     add #ifdef win32 #endif loops
Platforms tested:
     windows 2000, confirmed at eirene
This commit is contained in:
MuQun Yang 2001-01-12 01:48:36 -05:00
parent 4ce7a7ad80
commit 51fd87c344
2 changed files with 7 additions and 0 deletions

View File

@ -26,6 +26,9 @@
# include <sys/stat.h>
#endif
#ifdef WIN32
#include <io.h>
#endif
/*-------------------------------------------------------------------------

View File

@ -32,6 +32,10 @@
# include <sys/stat.h>
#endif
#ifdef WIN32
#include <io.h>
#endif
#ifndef FALSE
#define FALSE 0
#endif