diff options
author | YamaArashi <shadow962@live.com> | 2016-02-17 06:18:37 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-02-17 06:18:37 -0800 |
commit | 9cc5f8edb21ac07bff87def5155ee71dff449e37 (patch) | |
tree | b75b0eb06bf733811e4f54bd28dd6fa93fa8f485 /gcc/hash.h | |
parent | 75ff61fd74b379f7278b1042e269ea3a6ee66518 (diff) |
get rid of PTR macros
Diffstat (limited to 'gcc/hash.h')
-rwxr-xr-x | gcc/hash.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -27,7 +27,7 @@ Boston, MA 02111-1307, USA. */ typedef enum {false, true} boolean; -typedef PTR hash_table_key; +typedef void *hash_table_key; /* Hash table routines. There is no way to free up a hash table. */ @@ -107,7 +107,7 @@ extern struct hash_entry *hash_newfunc hash_table_key key); /* Grab some space for a hash table entry. */ -extern PTR hash_allocate (struct hash_table *, +extern void *hash_allocate (struct hash_table *, unsigned int); /* Traverse a hash table in a random order, calling a function on each |