summaryrefslogtreecommitdiffstats
path: root/Parser/tokenizer.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1993-12-20 12:53:10 (GMT)
committerGuido van Rossum <guido@python.org>1993-12-20 12:53:10 (GMT)
commit248a50c168c5368cb3e677ffe45e824771b1ddc0 (patch)
tree9cc964b022baca41ae95f5133b534959b774595d /Parser/tokenizer.h
parent455b87d457a5afed29e7032af787fd20398b1dc9 (diff)
downloadcpython-248a50c168c5368cb3e677ffe45e824771b1ddc0.zip
cpython-248a50c168c5368cb3e677ffe45e824771b1ddc0.tar.gz
cpython-248a50c168c5368cb3e677ffe45e824771b1ddc0.tar.bz2
* Grammar: corrected old typo (class instead of 'class')
* dosmodule.c: MSDOS specific stuff from posixmodule.c. * posixmodule.c: removed all MSDOS specific stuff. * tokenizer.h, parsetok.h: in prototypes, don't mix named and unnamed parameters (MSC doesn't like this).
Diffstat (limited to 'Parser/tokenizer.h')
-rw-r--r--Parser/tokenizer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/tokenizer.h b/Parser/tokenizer.h
index 17f44e5..b5a71ca 100644
--- a/Parser/tokenizer.h
+++ b/Parser/tokenizer.h
@@ -57,7 +57,7 @@ struct tok_state {
};
extern struct tok_state *tok_setups PROTO((char *));
-extern struct tok_state *tok_setupf PROTO((FILE *, char *ps1, char *ps2));
+extern struct tok_state *tok_setupf PROTO((FILE *, char *, char *));
extern void tok_free PROTO((struct tok_state *));
extern int tok_get PROTO((struct tok_state *, char **, char **));