summaryrefslogtreecommitdiff
path: root/zwgc
diff options
context:
space:
mode:
authorGravatar Karl Ramm <kcr@mit.edu>2008-01-21 16:20:51 +0000
committerGravatar Karl Ramm <kcr@mit.edu>2008-01-21 16:20:51 +0000
commitea96ccd1f26e7317e37d69d9d81943090d3f6488 (patch)
treea212a007495245ee755a13b8d4770aa815e7090a /zwgc
parent61cd940ea8c777a9ea4ad7ee979d7bd570ce3f99 (diff)
Oh, right, put the correct prototype for yylex back in
Diffstat (limited to 'zwgc')
-rw-r--r--zwgc/lexer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zwgc/lexer.h b/zwgc/lexer.h
index 0cda2b4..27c3e75 100644
--- a/zwgc/lexer.h
+++ b/zwgc/lexer.h
@@ -54,6 +54,6 @@ extern void lex_open(FILE *);
* yylex - performs as per. the yacc manual's requirements
*/
-/* extern int yylex(); */
+extern int yylex(void);
#endif