fixed unistd.h portability issue
This commit is contained in:
parent
3d4d73a622
commit
8ecef39168
1 changed files with 5 additions and 0 deletions
|
|
@ -26,7 +26,12 @@ Authors:
|
|||
|
||||
*/
|
||||
|
||||
#ifdef _INTERIX
|
||||
#include <io.h>
|
||||
#else // _INTERIX
|
||||
#include <unistd.h>
|
||||
#endif // ! _INTERIX
|
||||
|
||||
#include <fcntl.h>
|
||||
#include <cstdlib>
|
||||
#include <cstdio> // used to define EOF
|
||||
|
|
|
|||
Reference in a new issue