From 31ff9863a16950b0fdae0d94c0e84e5f718fafad Mon Sep 17 00:00:00 2001 From: Bulat Shakirzyanov Date: Tue, 27 Mar 2012 18:07:16 -0700 Subject: [PATCH] unix: fix TARGET_OS_IPHONE conditional --- src/unix/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix/process.c b/src/unix/process.c index ccb6e9a3..ffe01451 100644 --- a/src/unix/process.c +++ b/src/unix/process.c @@ -34,7 +34,7 @@ # include #endif -#if defined(__APPLE__) && !defined(TARGET_OS_IPHONE) +#if defined(__APPLE__) && !TARGET_OS_IPHONE # include # define environ (*_NSGetEnviron()) #else