diff options
author | Guido van Rossum <guido@python.org> | 1997-05-05 21:45:44 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-05-05 21:45:44 (GMT) |
commit | 7688bbad61a7614420e9e4d6cf99b484c8156c4b (patch) | |
tree | 761e4ddf11a6bed5cd1b3d09dd57c9091582a94e /PC | |
parent | a027efa5bfa7911b5c4b522b6a0698749a6f2e4a (diff) | |
download | cpython-7688bbad61a7614420e9e4d6cf99b484c8156c4b.zip cpython-7688bbad61a7614420e9e4d6cf99b484c8156c4b.tar.gz cpython-7688bbad61a7614420e9e4d6cf99b484c8156c4b.tar.bz2 |
Include Python.h, not allobjects.h (which no longer exists).
Diffstat (limited to 'PC')
-rw-r--r-- | PC/import_nt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/import_nt.c b/PC/import_nt.c index d34033c..e340bb9 100644 --- a/PC/import_nt.c +++ b/PC/import_nt.c @@ -6,7 +6,7 @@ */ -#include "allobjects.h" +#include "Python.h" #include "osdefs.h" #include <windows.h> #include "importdl.h" |