| /* Declarations shared between the different POSIX-related modules */ |
| PyAPI_FUNC(PyObject *) _PyLong_FromUid(uid_t); |
| PyAPI_FUNC(PyObject *) _PyLong_FromGid(gid_t); |
| PyAPI_FUNC(int) _Py_Uid_Converter(PyObject *, uid_t *); |
| PyAPI_FUNC(int) _Py_Gid_Converter(PyObject *, gid_t *); |
| #if defined(PYPTHREAD_SIGMASK) || defined(HAVE_SIGWAIT) || \ |
| defined(HAVE_SIGWAITINFO) || defined(HAVE_SIGTIMEDWAIT) |
| PyAPI_FUNC(int) _Py_Sigset_Converter(PyObject *, void *); |
| #endif /* Py_LIMITED_API */ |
| #endif /* !Py_POSIXMODULE_H */ |