From 40a6ba5c0a5f544bed9c11dc30b751e05a435b1e Mon Sep 17 00:00:00 2001 From: Bobby Bingham Date: Sun, 26 Oct 2014 23:33:50 -0500 Subject: Split helper functions into their own translation units --- sorters.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'sorters.h') diff --git a/sorters.h b/sorters.h index 5461914..0a63a89 100644 --- a/sorters.h +++ b/sorters.h @@ -2,9 +2,7 @@ #define SORTERS_H #include - -typedef int (*cmpfun)(const void *, const void *); -typedef void (*sorterfn)(void *, size_t, size_t, cmpfun); +#include "common.h" void musl_smoothsort(void *, size_t, size_t, cmpfun); void musl_heapsort(void *, size_t, size_t, cmpfun); -- cgit v1.2.3