diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2000-10-30 21:59:01 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2000-10-30 21:59:01 +0000 |
commit | b041f888acb608ad6d70d30e5a6d19ae23a9b69c (patch) | |
tree | 50ae6e5a95fbd7ddafd6daaaf296cfb5b70287ce /gas/hash.c | |
parent | 8e1a459b89eaace9fc44bf1734d1dfc4cd39a8f9 (diff) | |
download | gdb-b041f888acb608ad6d70d30e5a6d19ae23a9b69c.zip gdb-b041f888acb608ad6d70d30e5a6d19ae23a9b69c.tar.gz gdb-b041f888acb608ad6d70d30e5a6d19ae23a9b69c.tar.bz2 |
2000-10-30 Kazu Hirata <kazu@hxi.com>
* expr.c: Fix formatting.
* flonum-copy.c: Likewise.
* flonum.h: Likewise.
* gasp.c: Likewise.
* hash.c: Likewise.
Diffstat (limited to 'gas/hash.c')
-rw-r--r-- | gas/hash.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -37,8 +37,7 @@ /* An entry in a hash table. */ -struct hash_entry -{ +struct hash_entry { /* Next entry for this hash code. */ struct hash_entry *next; /* String being hashed. */ @@ -52,8 +51,7 @@ struct hash_entry /* A hash table. */ -struct hash_control -{ +struct hash_control { /* The hash array. */ struct hash_entry **table; /* The number of slots in the hash table. */ |