mirror of
https://github.com/python/cpython.git
synced 2025-11-09 06:01:05 +00:00
Move #endif for NT
This commit is contained in:
parent
74e6a118ca
commit
b078ce10d4
1 changed files with 1 additions and 1 deletions
|
|
@ -765,7 +765,6 @@ posix_geteuid(self, args)
|
||||||
return NULL;
|
return NULL;
|
||||||
return newintobject((long)geteuid());
|
return newintobject((long)geteuid());
|
||||||
}
|
}
|
||||||
#endif /* !NT */
|
|
||||||
|
|
||||||
static object *
|
static object *
|
||||||
posix_getgid(self, args)
|
posix_getgid(self, args)
|
||||||
|
|
@ -776,6 +775,7 @@ posix_getgid(self, args)
|
||||||
return NULL;
|
return NULL;
|
||||||
return newintobject((long)getgid());
|
return newintobject((long)getgid());
|
||||||
}
|
}
|
||||||
|
#endif /* !NT */
|
||||||
|
|
||||||
static object *
|
static object *
|
||||||
posix_getpid(self, args)
|
posix_getpid(self, args)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue