This commit is contained in:
Alberto Fustinoni 2017-08-05 09:43:14 +09:00
parent fb6a059ddb
commit 86129e53fa

View File

@ -19,6 +19,7 @@
#ifdef _MSC_VER #ifdef _MSC_VER
#undef UNICODE // Do not bother with UNICODE at this time. #undef UNICODE // Do not bother with UNICODE at this time.
#include <stddef.h> #include <stddef.h>
#include <io.h> #include <io.h>
#include <math.h> #include <math.h>
@ -40,8 +41,10 @@ typedef int ssize_t;
#define strdup _strdup #define strdup _strdup
#define lseek _lseek #define lseek _lseek
//#include <tchar.h> #if (_MSC_VER < 1310)
//#define strlen _tcslen #include <tchar.h>
#define strlen _tcslen
#endif
# define S_IRUSR S_IREAD /* read, user */ # define S_IRUSR S_IREAD /* read, user */
# define S_IWUSR S_IWRITE /* write, user */ # define S_IWUSR S_IWRITE /* write, user */