]> git.saurik.com Git - apple/libc.git/blobdiff - stdlib/FreeBSD/heapsort.c
Libc-1353.100.2.tar.gz
[apple/libc.git] / stdlib / FreeBSD / heapsort.c
index 0a088cf57a943de0175c13a666b968220896abd8..c41865b24421c4e6fe2064af2fc8ec9f7b716fc9 100644 (file)
@@ -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