diff options
author | jkim <jkim@FreeBSD.org> | 2013-05-21 19:17:02 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2013-05-21 19:17:02 +0000 |
commit | f35b94300055627286d77f0dd748057f5d98b5f0 (patch) | |
tree | 45ae45805b4cd1c1f3f6b1317cc45e1277e9eb25 /contrib/flex/gen.c | |
parent | af3aaf871a18c81e9986f6470064ec11a6d7ef1a (diff) | |
download | FreeBSD-src-f35b94300055627286d77f0dd748057f5d98b5f0.zip FreeBSD-src-f35b94300055627286d77f0dd748057f5d98b5f0.tar.gz |
Reduce compiler warnings.
Diffstat (limited to 'contrib/flex/gen.c')
-rw-r--r-- | contrib/flex/gen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/flex/gen.c b/contrib/flex/gen.c index b99888d..1e554d4 100644 --- a/contrib/flex/gen.c +++ b/contrib/flex/gen.c @@ -121,7 +121,7 @@ static struct yytbl_data *mkeoltbl (void) } /* Generate the table for possible eol matches. */ -static void geneoltbl () +static void geneoltbl (void) { int i; @@ -431,7 +431,7 @@ void genctbl () /* mkecstbl - Make equivalence-class tables. */ -struct yytbl_data *mkecstbl (void) +static struct yytbl_data *mkecstbl (void) { int i; struct yytbl_data *tbl = 0; |