blob: 1ec1833825f55a8434ff864c57d4423de31d7ffc [file] [log] [blame]
Serhiy Storchaka7cf55992013-02-10 21:56:49 +02001/* Declarations shared between the different POSIX-related modules */
2
3#ifndef Py_POSIXMODULE_H
4#define Py_POSIXMODULE_H
5#ifdef __cplusplus
6extern "C" {
7#endif
8
9#ifdef HAVE_SYS_TYPES_H
10#include <sys/types.h>
11#endif
12
13#ifndef Py_LIMITED_API
14#ifndef MS_WINDOWS
15PyAPI_FUNC(PyObject *) _PyLong_FromUid(uid_t);
16PyAPI_FUNC(PyObject *) _PyLong_FromGid(gid_t);
17PyAPI_FUNC(int) _Py_Uid_Converter(PyObject *, void *);
18PyAPI_FUNC(int) _Py_Gid_Converter(PyObject *, void *);
19#endif /* MS_WINDOWS */
20#endif
21
22#ifdef __cplusplus
23}
24#endif
25#endif /* !Py_POSIXMODULE_H */