diff options
Diffstat (limited to 'include/search.h')
-rw-r--r-- | include/search.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/search.h b/include/search.h index e82f02832b..d1f3a92e83 100644 --- a/include/search.h +++ b/include/search.h @@ -8,12 +8,12 @@ libc_hidden_proto (lfind) /* Now define the internal interfaces. */ extern void __hdestroy (void); -extern void *__tsearch (__const void *__key, void **__rootp, +extern void *__tsearch (const void *__key, void **__rootp, __compar_fn_t compar); -extern void *__tfind (__const void *__key, void *__const *__rootp, +extern void *__tfind (const void *__key, void *const *__rootp, __compar_fn_t compar); -extern void *__tdelete (__const void *__key, void **__rootp, +extern void *__tdelete (const void *__key, void **__rootp, __compar_fn_t compar); -extern void __twalk (__const void *__root, __action_fn_t action); +extern void __twalk (const void *__root, __action_fn_t action); extern void __tdestroy (void *__root, __free_fn_t freefct); #endif |