diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2001-01-25 21:19:46 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2001-01-25 21:19:46 +0000 |
commit | cc07f2350dc260a2a4eaf4ff05f32939c55a9893 (patch) | |
tree | b898aa05768dfd221f31c489d0d01cc2d80be868 /include/search.h | |
parent | c4685a5c3c6cef896b3ba7ccb5b628e4489fcb34 (diff) | |
download | uClibc-alpine-cc07f2350dc260a2a4eaf4ff05f32939c55a9893.tar.bz2 uClibc-alpine-cc07f2350dc260a2a4eaf4ff05f32939c55a9893.tar.xz |
Clean up atexit.c; make sure sysconf and atexit agree; link in ref'd libgcc.a
objects with shared uClibc; allow disabling long long support.
Diffstat (limited to 'include/search.h')
-rw-r--r-- | include/search.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/search.h b/include/search.h index b9c8a1785..b3b498543 100644 --- a/include/search.h +++ b/include/search.h @@ -34,12 +34,17 @@ For now the file can be distributed under the LGPL. */ #define __need_NULL #include <stddef.h> +/* Get __compar_fn_t from stdlib.h */ +#include <stdlib.h> + __BEGIN_DECLS +#if 0 #ifndef __COMPAR_FN_T #define __COMPAR_FN_T typedef int (*__compar_fn_t) __P ((__const __ptr_t, __const __ptr_t)); #endif +#endif /* for use with hsearch(3) */ |