Commit 82053dd9 authored by Tom Black's avatar Tom Black

Exclude pipe and exec on iOS/tvOS

Use of `execl()` is prohibited on these platforms
parent ed4dbce0
......@@ -209,7 +209,7 @@ mrb_fd_cloexec(mrb_state *mrb, int fd)
#endif
}
#ifndef _WIN32
#if !defined(_WIN32) && !TARGET_OS_IPHONE
static int
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