Commit ec1ef925 authored by dearblue's avatar dearblue

Fix mruby-io test for mingw32

Need `mkstemp()` implements.
parent 6c5ee8f7
...@@ -18,7 +18,7 @@ typedef int mode_t; ...@@ -18,7 +18,7 @@ typedef int mode_t;
#define open _open #define open _open
#define close _close #define close _close
#ifdef _MSC_VER #if defined(_MSC_VER) || defined(__MINGW32__)
#include <sys/stat.h> #include <sys/stat.h>
static int static int
......
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