1 --- heapsort_b.c.orig 2008-09-24 13:48:45.000000000 -0700
2 +++ heapsort_b.c 2008-09-24 13:48:56.000000000 -0700
3 @@ -136,10 +136,10 @@ __FBSDID("$FreeBSD: src/lib/libc/stdlib/
4 * only advantage over quicksort is that it requires little additional memory.
7 -heapsort(vbase, nmemb, size, compar)
8 +heapsort_b(vbase, nmemb, size, compar)
11 - int (*compar)(const void *, const void *);
12 + int (^compar)(const void *, const void *);
15 char tmp, *tmp1, *tmp2;