diff options
author | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-03 20:23:00 +0000 |
---|---|---|
committer | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-03 20:23:00 +0000 |
commit | 611150f1f575475f8c4a3ddaaa51a25a0bc7f478 (patch) | |
tree | 20975433114956e9106bac639fb752360d50925b /include/hashtab.h | |
parent | 715548fa5763986e1a5e5e842234997e0d4d075b (diff) | |
download | gcc-611150f1f575475f8c4a3ddaaa51a25a0bc7f478.tar.gz |
* hashtab.h: Change void * to PTR where necessary.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37230 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'include/hashtab.h')
-rw-r--r-- | include/hashtab.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/hashtab.h b/include/hashtab.h index 12f830ca5ec..c110ac5d1d6 100644 --- a/include/hashtab.h +++ b/include/hashtab.h @@ -80,7 +80,7 @@ struct htab htab_del del_f; /* Table itself. */ - void **entries; + PTR *entries; /* Current size (in entries) of the hash table */ size_t size; @@ -112,12 +112,12 @@ extern htab_t htab_create PARAMS ((size_t, htab_hash, extern void htab_delete PARAMS ((htab_t)); extern void htab_empty PARAMS ((htab_t)); -extern void *htab_find PARAMS ((htab_t, const void *)); -extern void **htab_find_slot PARAMS ((htab_t, const void *, +extern PTR htab_find PARAMS ((htab_t, const void *)); +extern PTR *htab_find_slot PARAMS ((htab_t, const void *, enum insert_option)); -extern void *htab_find_with_hash PARAMS ((htab_t, const void *, +extern PTR htab_find_with_hash PARAMS ((htab_t, const void *, hashval_t)); -extern void **htab_find_slot_with_hash PARAMS ((htab_t, const void *, +extern PTR *htab_find_slot_with_hash PARAMS ((htab_t, const void *, hashval_t, enum insert_option)); extern void htab_clear_slot PARAMS ((htab_t, void **)); |