diff options
Diffstat (limited to 'sim/arm/bag.c')
-rw-r--r-- | sim/arm/bag.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sim/arm/bag.c b/sim/arm/bag.c index 6cd8a95..35f2953 100644 --- a/sim/arm/bag.c +++ b/sim/arm/bag.c @@ -40,7 +40,7 @@ Hashentry; Hashentry *lookupbyfirst[HASH_TABLE_SIZE]; Hashentry *lookupbysecond[HASH_TABLE_SIZE]; -void +static void addtolist (Hashentry ** add, long first, long second) { while (*add) @@ -52,7 +52,7 @@ addtolist (Hashentry ** add, long first, long second) (*add)->second = second; } -void +static void killwholelist (Hashentry * p) { Hashentry *q; @@ -152,7 +152,7 @@ BAG_killpair_bysecond (long second) } void -BAG_newbag () +BAG_newbag (void) { int i; |