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

Merge pull request #4122 from blacktm/iphone-exclude-pipe-exec

Exclude pipe and exec on iOS/tvOS
parents ed4dbce0 82053dd9
...@@ -209,7 +209,7 @@ mrb_fd_cloexec(mrb_state *mrb, int fd) ...@@ -209,7 +209,7 @@ mrb_fd_cloexec(mrb_state *mrb, int fd)
#endif #endif
} }
#ifndef _WIN32 #if !defined(_WIN32) && !TARGET_OS_IPHONE
static int static int
mrb_cloexec_pipe(mrb_state *mrb, int fildes[2]) mrb_cloexec_pipe(mrb_state *mrb, int fildes[2])
{ {
......
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