summaryrefslogtreecommitdiff
path: root/zwgc/lexer.h
diff options
context:
space:
mode:
authorGravatar Karl Ramm <kcr@mit.edu>2008-01-21 03:11:44 +0000
committerGravatar Karl Ramm <kcr@mit.edu>2008-01-21 03:11:44 +0000
commitb6ea75cfc9712b77a0886c4348d6fb519641e40e (patch)
tree65f68bb2db7c6118e80670cd5edc297159f43409 /zwgc/lexer.h
parent71f70d3066d1c038e1794c4ffe804591eda3d1af (diff)
de K&Rify, fix prototypes
Diffstat (limited to 'zwgc/lexer.h')
-rw-r--r--zwgc/lexer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/zwgc/lexer.h b/zwgc/lexer.h
index fd76e8f..0cda2b4 100644
--- a/zwgc/lexer.h
+++ b/zwgc/lexer.h
@@ -48,12 +48,12 @@ extern int yylineno;
* a file. Resets current line # to 1.
*/
-extern void lex_open(/* FILE *file */);
+extern void lex_open(FILE *);
/*
* yylex - performs as per. the yacc manual's requirements
*/
-extern int yylex();
+/* extern int yylex(); */
#endif