diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2009-11-27 14:09:49 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2009-11-27 14:09:49 (GMT) |
commit | 7aed61ae466570fc9fbb8cb26c31e02c1a57e82d (patch) | |
tree | 6eb60ddb67a4866abff4f431ce43b1c2bd3e51b9 /pyconfig.h.in | |
parent | 03f6c11f07f7f7163186c7f8cb9da086ba703162 (diff) | |
download | cpython-7aed61ae466570fc9fbb8cb26c31e02c1a57e82d.zip cpython-7aed61ae466570fc9fbb8cb26c31e02c1a57e82d.tar.gz cpython-7aed61ae466570fc9fbb8cb26c31e02c1a57e82d.tar.bz2 |
Merged revisions 76550 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r76550 | martin.v.loewis | 2009-11-27 14:56:01 +0100 (Fr, 27 Nov 2009) | 2 lines
Issue #6508: Add posix.{getresuid,getresgid,setresuid,setresgid}.
........
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 223c996..b8404f3 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -314,6 +314,12 @@ /* Define to 1 if you have the `getpwent' function. */ #undef HAVE_GETPWENT +/* Define to 1 if you have the `getresgid' function. */ +#undef HAVE_GETRESGID + +/* Define to 1 if you have the `getresuid' function. */ +#undef HAVE_GETRESUID + /* Define to 1 if you have the `getsid' function. */ #undef HAVE_GETSID @@ -578,6 +584,12 @@ /* Define to 1 if you have the `setregid' function. */ #undef HAVE_SETREGID +/* Define to 1 if you have the `setresgid' function. */ +#undef HAVE_SETRESGID + +/* Define to 1 if you have the `setresuid' function. */ +#undef HAVE_SETRESUID + /* Define to 1 if you have the `setreuid' function. */ #undef HAVE_SETREUID |