From 4b6733544beb662a0f77310302fae1fb7b76d167 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Sat, 12 Sep 2015 18:53:31 +0000 Subject: [PATCH 13/13] comparison_fn_t is glibc specific, use raw signature in function pointer make it work with musl where comparison_fn_t is not provided Signed-off-by: Khem Raj --- Upstream-Status: Pending src/basic/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basic/util.h b/src/basic/util.h index c7da6c39b..87f62b891 100644 --- a/src/basic/util.h +++ b/src/basic/util.h @@ -98,7 +98,7 @@ void *xbsearch_r(const void *key, const void *base, size_t nmemb, size_t size, * Normal qsort requires base to be nonnull. Here were require * that only if nmemb > 0. */ -static inline void qsort_safe(void *base, size_t nmemb, size_t size, comparison_fn_t compar) { +static inline void qsort_safe(void *base, size_t nmemb, size_t size, int (*compar)(const void *, const void *)) { if (nmemb <= 1) return; -- 2.14.2