diff options
| author | Warner Losh <imp@FreeBSD.org> | 2002-03-23 17:24:55 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2002-03-23 17:24:55 +0000 |
| commit | bb28f3c29b4c91af1b0e79e456294bb08735648a (patch) | |
| tree | b4ea687a7ecac173665d9f3a8a858a98631f494e /include/search.h | |
| parent | 194788fafcb927f0affa1a56e21a1e8373f81f9c (diff) | |
Notes
Diffstat (limited to 'include/search.h')
| -rw-r--r-- | include/search.h | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/include/search.h b/include/search.h index 370654a446d79..75f59bf2d1a73 100644 --- a/include/search.h +++ b/include/search.h @@ -41,16 +41,13 @@ typedef struct node { #endif __BEGIN_DECLS -int hcreate __P((size_t)); -void hdestroy __P((void)); -ENTRY *hsearch __P((ENTRY, ACTION)); -void *tdelete __P((const void *, void **, - int (*)(const void *, const void *))); -void *tfind __P((const void *, void **, - int (*)(const void *, const void *))); -void *tsearch __P((const void *, void **, - int (*)(const void *, const void *))); -void twalk __P((const void *, void (*)(const void *, VISIT, int))); +int hcreate(size_t); +void hdestroy(void); +ENTRY *hsearch(ENTRY, ACTION); +void *tdelete(const void *, void **, int (*)(const void *, const void *)); +void *tfind(const void *, void **, int (*)(const void *, const void *)); +void *tsearch(const void *, void **, int (*)(const void *, const void *)); +void twalk(const void *, void (*)(const void *, VISIT, int)); __END_DECLS #endif /* !_SEARCH_H_ */ |
