summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-08-29 14:01:43 (GMT)
committerGuido van Rossum <guido@python.org>1994-08-29 14:01:43 (GMT)
commitb078ce10d469934d061378049bc2629f99961cd1 (patch)
treec88a5d3b7764459492198fe8d87b14f455e9bd57 /Modules/posixmodule.c
parent74e6a118caa67a5ea3671c03203fe6946df381dd (diff)
downloadcpython-b078ce10d469934d061378049bc2629f99961cd1.zip
cpython-b078ce10d469934d061378049bc2629f99961cd1.tar.gz
cpython-b078ce10d469934d061378049bc2629f99961cd1.tar.bz2
Move #endif for NT
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r--Modules/posixmodule.c2
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)