summaryrefslogtreecommitdiff
path: root/sorters.c
diff options
context:
space:
mode:
Diffstat (limited to 'sorters.c')
-rw-r--r--sorters.c3
1 files changed, 2 insertions, 1 deletions
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 },