diff options
author | Larry Hastings <larry@hastings.org> | 2013-08-12 17:53:20 (GMT) |
---|---|---|
committer | Larry Hastings <larry@hastings.org> | 2013-08-12 17:53:20 (GMT) |
commit | e70f2d588a1a3fb3f7125be3f80813cec43c6204 (patch) | |
tree | e89af3e5e26dac1efcd0d7279232a76446861f70 /Modules/posixmodule.c | |
parent | e1f159722e9767ccd28d13fc4cd6a18f7adfcc47 (diff) | |
parent | 00964ed216e8154c6e684e6c8822fb5d0a7f4b41 (diff) | |
download | cpython-e70f2d588a1a3fb3f7125be3f80813cec43c6204.zip cpython-e70f2d588a1a3fb3f7125be3f80813cec43c6204.tar.gz cpython-e70f2d588a1a3fb3f7125be3f80813cec43c6204.tar.bz2 |
Issue #18667: Add missing "HAVE_FCHOWNAT" symbol to posix._have_functions.
Diffstat (limited to 'Modules/posixmodule.c')
-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 5145e3a..ccba5f9 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -11567,6 +11567,10 @@ static char *have_functions[] = { "HAVE_FCHOWN", #endif +#ifdef HAVE_FCHOWNAT + "HAVE_FCHOWNAT", +#endif + #ifdef HAVE_FEXECVE "HAVE_FEXECVE", #endif |