diff options
author | Christian Heimes <christian@python.org> | 2021-11-25 11:28:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-25 11:28:41 (GMT) |
commit | dc19e8698327cae3d6274b73c135375955f1d0d0 (patch) | |
tree | f98f75821f9c35168d9c570db3c3ba9b3805f23d /Modules/posixmodule.h | |
parent | c456dfafe9f9f6614fbcf2213a93707f0e101f4e (diff) | |
download | cpython-dc19e8698327cae3d6274b73c135375955f1d0d0.zip cpython-dc19e8698327cae3d6274b73c135375955f1d0d0.tar.gz cpython-dc19e8698327cae3d6274b73c135375955f1d0d0.tar.bz2 |
bpo-41498: Fix build on platforms without sigset_t (GH-29770)
Diffstat (limited to 'Modules/posixmodule.h')
-rw-r--r-- | Modules/posixmodule.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Modules/posixmodule.h b/Modules/posixmodule.h index 711ac68..5452ffb 100644 --- a/Modules/posixmodule.h +++ b/Modules/posixmodule.h @@ -23,9 +23,7 @@ PyAPI_FUNC(int) _Py_Gid_Converter(PyObject *, gid_t *); # define HAVE_SIGSET_T #endif -#ifdef HAVE_SIGSET_T PyAPI_FUNC(int) _Py_Sigset_Converter(PyObject *, void *); -#endif /* HAVE_SIGSET_T */ #endif /* Py_LIMITED_API */ #ifdef __cplusplus |