diff options
author | Larry Hastings <larry@hastings.org> | 2013-08-12 17:49:30 (GMT) |
---|---|---|
committer | Larry Hastings <larry@hastings.org> | 2013-08-12 17:49:30 (GMT) |
commit | 00964ed216e8154c6e684e6c8822fb5d0a7f4b41 (patch) | |
tree | 2986f5daf3635c83d4e22ead7820716948db8deb /Modules | |
parent | ba5517d4c02ad9c8d7117fe8f063d2e680f1d9af (diff) | |
download | cpython-00964ed216e8154c6e684e6c8822fb5d0a7f4b41.zip cpython-00964ed216e8154c6e684e6c8822fb5d0a7f4b41.tar.gz cpython-00964ed216e8154c6e684e6c8822fb5d0a7f4b41.tar.bz2 |
Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/posixmodule.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 32c85b8..f3234a4 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -11965,6 +11965,10 @@ static char *have_functions[] = { "HAVE_FCHOWN", #endif +#ifdef HAVE_FCHOWNAT + "HAVE_FCHOWNAT", +#endif + #ifdef HAVE_FEXECVE "HAVE_FEXECVE", #endif |