Move #endif for NT

This commit is contained in:
Guido van Rossum 1994-08-29 14:01:43 +00:00
parent 74e6a118ca
commit b078ce10d4
1 changed files with 1 additions and 1 deletions

View 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)