summaryrefslogtreecommitdiff
path: root/src/gen.c
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2016-02-16 14:35:34 +0100
committerTobias Klauser <tklauser@distanz.ch>2016-02-16 14:52:16 +0100
commit64f27743785e30855b486e4575429192fddaa9eb (patch)
treeb67ab9c4c368a77c3b7c54cd2e0f806bc11b63e1 /src/gen.c
parent1cc6c871f9891bbf02d600b7a515d3cad06b0e46 (diff)
Converted K&R style function definitions to ANSI C style
Consistently make use of the ANSI C function definition style instead of the K&R style.
Diffstat (limited to 'src/gen.c')
-rw-r--r--src/gen.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/gen.c b/src/gen.c
index 546e340..b2e2b53 100644
--- a/src/gen.c
+++ b/src/gen.c
@@ -725,8 +725,7 @@ void genftbl (void)
/* Generate the code to find the next compressed-table state. */
-void gen_next_compressed_state (char_map)
- char *char_map;
+void gen_next_compressed_state (char *char_map)
{
indent_put2s ("YY_CHAR yy_c = %s;", char_map);
@@ -876,8 +875,7 @@ void gen_next_match (void)
/* Generate the code to find the next state. */
-void gen_next_state (worry_about_NULs)
- int worry_about_NULs;
+void gen_next_state (int worry_about_NULs)
{ /* NOTE - changes in here should be reflected in gen_next_match() */
char char_map[256];