summaryrefslogtreecommitdiff
path: root/zwgc/parser.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/parser.h
parent71f70d3066d1c038e1794c4ffe804591eda3d1af (diff)
de K&Rify, fix prototypes
Diffstat (limited to 'zwgc/parser.h')
-rw-r--r--zwgc/parser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/zwgc/parser.h b/zwgc/parser.h
index 8e0d5f6..92724dd 100644
--- a/zwgc/parser.h
+++ b/zwgc/parser.h
@@ -31,7 +31,7 @@
* is reported to the user via stderr.
*/
-extern void report_parse_error();
+extern void report_parse_error(char *, int);
/*
* struct _Node *parse_file(FILE *input_file)
@@ -49,6 +49,6 @@ extern void report_parse_error();
* is closed before this routine returns.
*/
-extern struct _Node *parse_file();
+extern struct _Node *parse_file(FILE *);
#endif