X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/b061a43bf32824cb214e9e3a29a974341de443d4..refs/heads/master:/stdlib/FreeBSD/system.c?ds=sidebyside diff --git a/stdlib/FreeBSD/system.c b/stdlib/FreeBSD/system.c index b4e96ef..8ab1eca 100644 --- a/stdlib/FreeBSD/system.c +++ b/stdlib/FreeBSD/system.c @@ -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 */ @@ -156,3 +159,5 @@ __system(command) __weak_reference(__system, system); __weak_reference(__system, _system); + +#pragma clang diagnostic pop