summaryrefslogtreecommitdiffstats
path: root/Include/parsetok.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 /Include/parsetok.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 'Include/parsetok.h')
-rw-r--r--Include/parsetok.h6
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
}