]> git.saurik.com Git - apple/libc.git/blobdiff - stdlib/FreeBSD/system.c
Libc-1272.200.26.tar.gz
[apple/libc.git] / stdlib / FreeBSD / system.c
index 84b22249bcd3fdb271ae71118e5b112f922b8ff2..8ab1ecac15de70315b66eccb1f1ceec9edd6f3b9 100644 (file)
@@ -27,6 +27,9 @@
  * SUCH DAMAGE.
  */
 
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wstrict-prototypes"
+
 #if defined(LIBC_SCCS) && !defined(lint)
 static char sccsid[] = "@(#)system.c   8.1 (Berkeley) 6/4/93";
 #endif /* LIBC_SCCS and not lint */
@@ -54,7 +57,9 @@ __FBSDID("$FreeBSD: src/lib/libc/stdlib/system.c,v 1.11 2007/01/09 00:28:10 imp
 #if __DARWIN_UNIX03
 #include <pthread.h>
 
+#if !(TARGET_OS_IPHONE && (TARGET_OS_SIMULATOR || !TARGET_OS_IOS))
 static pthread_mutex_t __systemfn_mutex = PTHREAD_MUTEX_INITIALIZER;
+#endif
 extern int __unix_conforming;
 #endif /* __DARWIN_UNIX03 */
 
@@ -83,10 +88,14 @@ __system(command)
 #endif /* __DARWIN_UNIX03 */
 
        if (!command) {         /* just checking... */
+#if TARGET_OS_IPHONE
+               return(0);
+#else
                if (access(_PATH_BSHELL, F_OK) == -1)   /* if no sh or no access */
                        return(0);
                else
                        return(1);
+#endif
        }
 
        if ((err = posix_spawnattr_init(&attr)) != 0) {
@@ -150,3 +159,5 @@ __system(command)
 
 __weak_reference(__system, system);
 __weak_reference(__system, _system);
+
+#pragma clang diagnostic pop