return (int) (m - 1);
}
-static int cmp_int(const int *a, const int *b) {
- return CMP(*a, *b);
-}
-
int close_all_fds(const int except[], size_t n_except) {
static bool have_close_range = true; /* Assume we live in the future */
_cleanup_closedir_ DIR *d = NULL;
}
return NULL;
}
+
+int cmp_int(const int *a, const int *b) {
+ return CMP(*a, *b);
+}
int (*_func_)(const typeof(p[0])*, const typeof(p[0])*, typeof(userdata)) = func; \
qsort_r_safe((p), (n), sizeof((p)[0]), (__compar_d_fn_t) _func_, userdata); \
})
+
+int cmp_int(const int *a, const int *b);