summaryrefslogtreecommitdiffhomepage
path: root/src/grammar.y
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2001-11-25 02:20:54 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2001-11-25 02:20:54 +0000
commit09dbdbc3d7601bad0208651446f78f1200a96e37 (patch)
treeb0c37ceeb7b9c5163c2fc0a5b59c003c8711fb62 /src/grammar.y
parentc8b2c614f98ae53f728c240f7f31975a00e61e7f (diff)
Change the C code to match the new style.
Diffstat (limited to 'src/grammar.y')
-rw-r--r--src/grammar.y5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/grammar.y b/src/grammar.y
index 8e3f324..fb2b4cc 100644
--- a/src/grammar.y
+++ b/src/grammar.y
@@ -1,4 +1,4 @@
-/* $Id: grammar.y,v 1.5 2001-09-16 20:08:24 rjkaes Exp $
+/* $Id: grammar.y,v 1.6 2001-11-25 02:20:54 rjkaes Exp $
*
* This is the grammar for tinyproxy's configuration file. It needs to be
* in sync with scanner.l. If you know more about yacc and lex than I do
@@ -174,7 +174,8 @@ string
extern unsigned int yylineno;
-void yyerror(char *s)
+void
+yyerror(char *s)
{
fprintf(stderr, "Line %d: %s\n", yylineno, s);
}