From e20134f889a0cfcc37a46979f31a1c98b800de07 Mon Sep 17 00:00:00 2001 From: Jakub KulĂ­k Date: Wed, 11 Sep 2019 17:11:57 +0200 Subject: bpo-38110: Use fdwalk for os.closerange() when available. (GH-15224) Use fdwalk() on platforms that support it to implement os.closerange(). --- pyconfig.h.in | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pyconfig.h.in') diff --git a/pyconfig.h.in b/pyconfig.h.in index 5ff5cc2282f..aca9751d4b7 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -337,6 +337,9 @@ /* Define to 1 if you have the `fdopendir' function. */ #undef HAVE_FDOPENDIR +/* Define to 1 if you have the `fdwalk' function. */ +#undef HAVE_FDWALK + /* Define to 1 if you have the `fexecve' function. */ #undef HAVE_FEXECVE -- cgit v1.2.3-65-gdbad