From 5a574951a166d294f3b44e889b48ebf9436d964c Mon Sep 17 00:00:00 2001 From: Bobby Bingham Date: Mon, 1 Sep 2014 00:49:51 -0500 Subject: Add musl's old heap sort --- sorters.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sorters.c') diff --git a/sorters.c b/sorters.c index 43a3369..593ab29 100644 --- a/sorters.c +++ b/sorters.c @@ -7,7 +7,8 @@ const struct sorter sorters[] = { { .name = "freebsd", .func = freebsd_qsort }, { .name = "glibc quicksort", .func = glibc_quicksort }, { .name = "glibc mergesort", .func = glibc_mergesort }, - { .name = "musl", .func = musl_qsort }, + { .name = "musl smoothsort", .func = musl_smoothsort }, + { .name = "musl heapsort", .func = musl_heapsort }, { .name = "wikisort", .func = wikisort }, { .name = "wikisort (ref)", .func = wikisort_ref }, { .name = "grailsort", .func = grailsort }, -- cgit v1.2.3