* eoLogger: replaced _INTERIX by _WIN32 in order to use io.h header

This commit is contained in:
Caner Candan 2011-05-11 14:49:42 +02:00
commit e2c833e23e

View file

@ -26,11 +26,11 @@ Authors:
*/
#ifdef _INTERIX
#ifdef _WIN32
#include <io.h>
#else // _INTERIX
#else // _WIN32
#include <unistd.h>
#endif // ! _INTERIX
#endif // ! _WIN32
#include <fcntl.h>
#include <cstdlib>