diff options
author | Thomas Wouters <thomas@python.org> | 2000-07-22 23:38:01 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-07-22 23:38:01 (GMT) |
commit | b4bd21cf79166e769b7027d14c2de002ec6ec9cb (patch) | |
tree | 190725ee856c2ca5e9e9a4a1e2616802d3cf34fd /Python/import.c | |
parent | bd8ad942fe2cf22d741b3a132d98baa350537c77 (diff) | |
download | cpython-b4bd21cf79166e769b7027d14c2de002ec6ec9cb.zip cpython-b4bd21cf79166e769b7027d14c2de002ec6ec9cb.tar.gz cpython-b4bd21cf79166e769b7027d14c2de002ec6ec9cb.tar.bz2 |
ANSIfy as many declarations as possible.
Diffstat (limited to 'Python/import.c')
-rw-r--r-- | Python/import.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c index 959474a..46c8469 100644 --- a/Python/import.c +++ b/Python/import.c @@ -817,7 +817,8 @@ is_builtin(char *name) pathname and an open file. Return NULL if the module is not found. */ #ifdef MS_COREDLL -extern FILE *PyWin_FindRegisteredModule(); +extern FILE *PyWin_FindRegisteredModule(const char *, struct filedescr **, + char *, int); #endif #ifdef CHECK_IMPORT_CASE |