diff options
author | Guido van Rossum <guido@python.org> | 1996-05-28 22:30:38 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-05-28 22:30:38 (GMT) |
commit | a0e71303d91921c09c6cadd8410d2f8a8ff7cc33 (patch) | |
tree | b9b6e43365512bd95bcf260ff23a3fef31466d3e /Modules/posixmodule.c | |
parent | 582646aecc3776109b784e1638849ea9c6389a55 (diff) | |
download | cpython-a0e71303d91921c09c6cadd8410d2f8a8ff7cc33.zip cpython-a0e71303d91921c09c6cadd8410d2f8a8ff7cc33.tar.gz cpython-a0e71303d91921c09c6cadd8410d2f8a8ff7cc33.tar.bz2 |
Changed NT -> MSC or WATCOM
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r-- | Modules/posixmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 62d82c2..338a40c 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -1695,7 +1695,7 @@ static struct methodlist posix_methods[] = { }; -#ifdef NT +#if defined(_MSC_VER) || defined(__WATCOMC__) void initnt() { |