diff options
author | Guido van Rossum <guido@python.org> | 1993-12-20 12:53:10 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-12-20 12:53:10 (GMT) |
commit | 248a50c168c5368cb3e677ffe45e824771b1ddc0 (patch) | |
tree | 9cc964b022baca41ae95f5133b534959b774595d /Include | |
parent | 455b87d457a5afed29e7032af787fd20398b1dc9 (diff) | |
download | cpython-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 'Include')
-rw-r--r-- | Include/parsetok.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Include/parsetok.h b/Include/parsetok.h index efb1a05..9150cd6 100644 --- a/Include/parsetok.h +++ b/Include/parsetok.h @@ -30,9 +30,9 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. /* Parser-tokenizer link interface */ -extern int parsestring PROTO((char *, grammar *, int start, node **n_ret)); -extern int parsefile PROTO((FILE *, char *, grammar *, int start, - char *ps1, char *ps2, node **n_ret)); +extern int parsestring PROTO((char *, grammar *, int, node **_ret)); +extern int parsefile PROTO((FILE *, char *, grammar *, int, + char *, char *, node **)); #ifdef __cplusplus } |