summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/systemd/systemd/0003-comparison_fn_t-is-glibc-specific-use-raw-signature-.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/systemd/systemd/0003-comparison_fn_t-is-glibc-specific-use-raw-signature-.patch')
-rw-r--r--meta/recipes-core/systemd/systemd/0003-comparison_fn_t-is-glibc-specific-use-raw-signature-.patch40
1 files changed, 40 insertions, 0 deletions
diff --git a/meta/recipes-core/systemd/systemd/0003-comparison_fn_t-is-glibc-specific-use-raw-signature-.patch b/meta/recipes-core/systemd/systemd/0003-comparison_fn_t-is-glibc-specific-use-raw-signature-.patch
new file mode 100644
index 0000000000..115fb33c30
--- /dev/null
+++ b/meta/recipes-core/systemd/systemd/0003-comparison_fn_t-is-glibc-specific-use-raw-signature-.patch
@@ -0,0 +1,40 @@
1From e965e748c7030df0709e63128db2f023540a06ba Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 12 Sep 2015 18:53:31 +0000
4Subject: [PATCH 03/19] comparison_fn_t is glibc specific, use raw signature in
5 function pointer
6
7make it work with musl where comparison_fn_t is not provided
8
9Upstream-Status: Inappropriate [musl specific]
10
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12---
13 src/basic/util.h | 4 ++--
14 1 file changed, 2 insertions(+), 2 deletions(-)
15
16diff --git a/src/basic/util.h b/src/basic/util.h
17index 40eaf518c..c58392397 100644
18--- a/src/basic/util.h
19+++ b/src/basic/util.h
20@@ -77,7 +77,7 @@ void *xbsearch_r(const void *key, const void *base, size_t nmemb, size_t size,
21 * that only if nmemb > 0.
22 */
23 static inline void* bsearch_safe(const void *key, const void *base,
24- size_t nmemb, size_t size, comparison_fn_t compar) {
25+ size_t nmemb, size_t size, int (*compar)(const void *, const void *)) {
26 if (nmemb <= 0)
27 return NULL;
28
29@@ -89,7 +89,7 @@ static inline void* bsearch_safe(const void *key, const void *base,
30 * Normal qsort requires base to be nonnull. Here were require
31 * that only if nmemb > 0.
32 */
33-static inline void qsort_safe(void *base, size_t nmemb, size_t size, comparison_fn_t compar) {
34+static inline void qsort_safe(void *base, size_t nmemb, size_t size, int (*compar)(const void *, const void *)) {
35 if (nmemb <= 1)
36 return;
37
38--
392.11.0
40