diff options
author | Guido van Rossum <guido@python.org> | 1996-09-11 23:12:24 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-09-11 23:12:24 +0000 |
commit | ee9400a93876280f80369da6634208d23af522b1 (patch) | |
tree | e5a6a2345ee760a99801e87aa2da1111f3c7b4ac /Python/sysmodule.c | |
parent | 2aacbea223f3f477cd97db9be9838a3ac3417767 (diff) | |
download | cpython-ee9400a93876280f80369da6634208d23af522b1.tar.gz |
Rationalized MS ifdefs
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r-- | Python/sysmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 5cfd2d6ff1..1bcb28798b 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -49,7 +49,7 @@ int sys_checkinterval = 10; static object *sysdict; -#ifdef NT +#ifdef MS_COREDLL extern void *PyWin_DLLhModule; #endif |