diff options
author | Akim Demaille <akim.demaille@gmail.com> | 2020-06-03 08:26:23 +0200 |
---|---|---|
committer | Akim Demaille <akim.demaille@gmail.com> | 2020-06-03 08:31:08 +0200 |
commit | ae03b1678514ae323a9355ffa62fde96a85ab2a9 (patch) | |
tree | e8feedf58c92394e98da1b8eba5fb51ce55fd8b5 /src/state-item.c | |
parent | 7e16bd2cae4f6762449927b2ca3159f44724a3ee (diff) | |
download | bison-ae03b1678514ae323a9355ffa62fde96a85ab2a9.tar.gz |
warnings: fix -Wmissing-prototypes issues
* src/counterexample.c, src/lssi.c, src/parse-simulation.c,
* src/state-item.c:
Here.
Diffstat (limited to 'src/state-item.c')
-rw-r--r-- | src/state-item.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/state-item.c b/src/state-item.c index 691ce015..b3e8cdfc 100644 --- a/src/state-item.c +++ b/src/state-item.c @@ -61,7 +61,7 @@ hash_pair_free (hash_pair *hp) free (hp); } -Hash_table * +static Hash_table * hash_pair_table_create (int size) { return hash_xinitialize (size, @@ -333,7 +333,7 @@ gen_lookaheads (void) bitsetv firsts = NULL; -void +static void init_firsts (void) { firsts = bitsetv_create (nvars, nsyms, BITSET_FIXED); |