diff options
author | Guido van Rossum <guido@python.org> | 1994-08-29 14:01:43 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-08-29 14:01:43 (GMT) |
commit | b078ce10d469934d061378049bc2629f99961cd1 (patch) | |
tree | c88a5d3b7764459492198fe8d87b14f455e9bd57 /Modules | |
parent | 74e6a118caa67a5ea3671c03203fe6946df381dd (diff) | |
download | cpython-b078ce10d469934d061378049bc2629f99961cd1.zip cpython-b078ce10d469934d061378049bc2629f99961cd1.tar.gz cpython-b078ce10d469934d061378049bc2629f99961cd1.tar.bz2 |
Move #endif for NT
Diffstat (limited to 'Modules')
-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 7bf69e7..7ffcd66 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -765,7 +765,6 @@ posix_geteuid(self, args) return NULL; return newintobject((long)geteuid()); } -#endif /* !NT */ static object * posix_getgid(self, args) @@ -776,6 +775,7 @@ posix_getgid(self, args) return NULL; return newintobject((long)getgid()); } +#endif /* !NT */ static object * posix_getpid(self, args) |