X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Fasort%2Fasort.h;h=b7178c5b1d50c1d8f08f8c63ebe8953b042fd42c;hb=8388c33a83ad51c6fdc355d938f08419d2b24923;hp=ffef1f6fe9e394b9697812982cfd46e964436e4f;hpb=b1c867121f379d76dc7fb7d99bae77e2b7d99841;p=ccan diff --git a/ccan/asort/asort.h b/ccan/asort/asort.h index ffef1f6f..b7178c5b 100644 --- a/ccan/asort/asort.h +++ b/ccan/asort/asort.h @@ -1,5 +1,6 @@ #ifndef CCAN_ASORT_H #define CCAN_ASORT_H +#include "config.h" #include #include @@ -18,14 +19,19 @@ */ #define asort(base, num, cmp, ctx) \ _asort((base), (num), sizeof(*(base)), \ - cast_if_type(int (*)(const void *, const void *, const void *), \ - (cmp), \ - int (*)(const __typeof__(*(base)) *, \ - const __typeof__(*(base)) *, \ - __typeof__(ctx))), (ctx)) + typesafe_cb_cast(int (*)(const void *, const void *, void *), \ + int (*)(const __typeof__(*(base)) *, \ + const __typeof__(*(base)) *, \ + __typeof__(ctx)), \ + (cmp)), \ + (ctx)) +#if HAVE_QSORT_R_PRIVATE_LAST +#define _asort(b, n, s, cmp, ctx) qsort_r(b, n, s, cmp, ctx) +#else void _asort(void *base, size_t nmemb, size_t size, - int(*compar)(const void *, const void *, const void *), - const void *ctx); + int(*compar)(const void *, const void *, void *), + void *ctx); +#endif #endif /* CCAN_ASORT_H */