summaryrefslogtreecommitdiff
path: root/sorters.c
diff options
context:
space:
mode:
Diffstat (limited to 'sorters.c')
-rw-r--r--sorters.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sorters.c b/sorters.c
index a630136..5150272 100644
--- a/sorters.c
+++ b/sorters.c
@@ -1,6 +1,8 @@
#include "sorters.h"
const struct sorter sorters[] = {
- { .name = "musl", .func = qsort_musl },
+ { .name = "glibc quicksort", .func = glibc_quicksort },
+ { .name = "glibc mergesort", .func = glibc_mergesort },
+ { .name = "musl", .func = musl_qsort },
{ 0 }
};