summaryrefslogtreecommitdiff
path: root/gcc/hash.h
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-02-17 06:18:37 -0800
committerYamaArashi <shadow962@live.com>2016-02-17 06:18:37 -0800
commit9cc5f8edb21ac07bff87def5155ee71dff449e37 (patch)
treeb75b0eb06bf733811e4f54bd28dd6fa93fa8f485 /gcc/hash.h
parent75ff61fd74b379f7278b1042e269ea3a6ee66518 (diff)
get rid of PTR macros
Diffstat (limited to 'gcc/hash.h')
-rwxr-xr-xgcc/hash.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/hash.h b/gcc/hash.h
index 02a5c3e..16e5db5 100755
--- a/gcc/hash.h
+++ b/gcc/hash.h
@@ -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