]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Move #endif for NT
authorGuido van Rossum <guido@python.org>
Mon, 29 Aug 1994 14:01:43 +0000 (14:01 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 29 Aug 1994 14:01:43 +0000 (14:01 +0000)
Modules/posixmodule.c

index 7bf69e7e0fe3b35e572c20d01bca3f006fd83bc1..7ffcd660a75994aae3f7eae6c1639bb342588dc0 100644 (file)
@@ -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)