Exclude pipe and exec on iOS/tvOS

Use of `execl()` is prohibited on these platforms
This commit is contained in:
Tom Black
2018-09-15 13:55:11 -07:00
parent ed4dbce052
commit 82053dd945
+1 -1
View File
@@ -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])
{