Fixed build error on Windows

This commit is contained in:
yhirose 2019-09-05 13:22:44 -04:00
parent c434d555bb
commit e2babf315c

View file

@ -19,7 +19,7 @@
#if defined(_MSC_VER)
#ifdef _WIN64
typedef int64_t ssize_t;
typedef __int64 ssize_t;
#else
typedef int ssize_t;
#endif