Loading...
stdlib/FreeBSD/psort.c Libc-1725.40.4 Libc-1353.100.2
--- Libc/Libc-1725.40.4/stdlib/FreeBSD/psort.c
+++ Libc/Libc-1353.100.2/stdlib/FreeBSD/psort.c
@@ -46,8 +46,6 @@
 #define __APPLE_API_PRIVATE
 #include <machine/cpu_capabilities.h>
 
-#include "libc_private.h" // for LIBC_ABORT
-
 #ifdef I_AM_PSORT_R
 typedef int		 cmp_t(void *, const void *, const void *);
 #else
@@ -155,7 +153,9 @@
 	es % sizeof(long) ? 2 : es == sizeof(long)? 0 : 1;
 
 static inline void
-swapfunc(char *a, char *b, int n, int swaptype)
+swapfunc(a, b, n, swaptype)
+	char *a, *b;
+	int n, swaptype;
 {
 	if(swaptype <= 1)
 		swapcode(long, a, b, n)