summaryrefslogtreecommitdiff
path: root/Include/parsetok.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1993-12-20 12:53:10 +0000
committerGuido van Rossum <guido@python.org>1993-12-20 12:53:10 +0000
commit059dac95c538f8f1fe5aa7f5080a27e351fcf9a0 (patch)
tree65876f5259a162f3b01e35a9b1e34aec6798bc88 /Include/parsetok.h
parent46bdac95a2649b071b2b9a99fbf75513cfecbee0 (diff)
downloadcpython-059dac95c538f8f1fe5aa7f5080a27e351fcf9a0.tar.gz
* 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 efb1a052e2..9150cd6a7b 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
}