X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/34e8f8296870d0e8695f90e1a54240a589d41312..fc56b708803d28b949a9181528bb0da4d25b3b7b:/stdlib/FreeBSD/heapsort.c diff --git a/stdlib/FreeBSD/heapsort.c b/stdlib/FreeBSD/heapsort.c index 0a088cf..c41865b 100644 --- a/stdlib/FreeBSD/heapsort.c +++ b/stdlib/FreeBSD/heapsort.c @@ -30,6 +30,9 @@ * SUCH DAMAGE. */ +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wstrict-prototypes" + #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)heapsort.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ @@ -179,3 +182,4 @@ heapsort(vbase, nmemb, size, compar) free(k); return (0); } +#pragma clang diagnostic pop