summaryrefslogtreecommitdiff
path: root/src/scan.l
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/scan.l
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/scan.l')
-rw-r--r--src/scan.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scan.l b/src/scan.l
index 1347d45..9952af7 100644
--- a/src/scan.l
+++ b/src/scan.l
@@ -59,7 +59,7 @@ extern const char *escaped_qstart, *escaped_qend;
#define MARK_END_OF_PROLOG mark_prolog();
#define YY_DECL \
- int flexscan()
+ int flexscan(void)
#define RETURNCHAR \
yylval = (unsigned char) yytext[0]; \