summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.h
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2021-11-25 11:28:41 (GMT)
committerGitHub <noreply@github.com>2021-11-25 11:28:41 (GMT)
commitdc19e8698327cae3d6274b73c135375955f1d0d0 (patch)
treef98f75821f9c35168d9c570db3c3ba9b3805f23d /Modules/posixmodule.h
parentc456dfafe9f9f6614fbcf2213a93707f0e101f4e (diff)
downloadcpython-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.h2
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