diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2000-07-13 01:26:58 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2000-07-13 01:26:58 (GMT) |
commit | 8d2f2b2db21bddfad17a0a52b4fdded558adf7fb (patch) | |
tree | daa866d3736fed70a600813a475a86b8c75418f1 /config.h.in | |
parent | 4d5d5bf5ae26fe820301ad175560192af372716c (diff) | |
download | cpython-8d2f2b2db21bddfad17a0a52b4fdded558adf7fb.zip cpython-8d2f2b2db21bddfad17a0a52b4fdded558adf7fb.tar.gz cpython-8d2f2b2db21bddfad17a0a52b4fdded558adf7fb.tar.bz2 |
From Sam Rushing's Medusa, via SF patch #100858: add & document
os.seteuid(), os.setegid(), os.setreuid(), os.setregid().
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in index 53c263d..02e3bd8 100644 --- a/config.h.in +++ b/config.h.in @@ -407,6 +407,12 @@ /* Define if you have the select function. */ #undef HAVE_SELECT +/* Define if you have the setegid function. */ +#undef HAVE_SETEGID + +/* Define if you have the seteuid function. */ +#undef HAVE_SETEUID + /* Define if you have the setgid function. */ #undef HAVE_SETGID @@ -419,6 +425,12 @@ /* Define if you have the setpgrp function. */ #undef HAVE_SETPGRP +/* Define if you have the setregid function. */ +#undef HAVE_SETREGID + +/* Define if you have the setreuid function. */ +#undef HAVE_SETREUID + /* Define if you have the setsid function. */ #undef HAVE_SETSID |