Unverified Commit e3bb95bb authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

Merge pull request #5034 from dearblue/ssize_t

Fix `ssize_t` for mingw; ref #5030
parents 99bb2154 5df95e8d
...@@ -33,7 +33,10 @@ ...@@ -33,7 +33,10 @@
typedef long fsuseconds_t; typedef long fsuseconds_t;
typedef int fmode_t; typedef int fmode_t;
typedef int mrb_io_read_write_size; typedef int mrb_io_read_write_size;
#if !defined(_SSIZE_T_) && !defined(_SSIZE_T_DEFINED) && \
!defined(__have_typedef_ssize_t)
typedef SSIZE_T ssize_t; typedef SSIZE_T ssize_t;
#endif
#ifndef O_TMPFILE #ifndef O_TMPFILE
#define O_TMPFILE O_TEMPORARY #define O_TMPFILE O_TEMPORARY
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment