Staging
v0.8.1
Revision fbe04b68af58ea513cf95cb45dc0d2656bd67cfc authored by Serhiy Storchaka on 28 October 2015, 19:39:36 UTC, committed by Serhiy Storchaka on 28 October 2015, 19:39:36 UTC
whitespace is a substring of smallest leading whitespace.
Based on patch by Robert Li.
1 parent 0a1ba70
Raw File
posixmodule.h
/* Declarations shared between the different POSIX-related modules */

#ifndef Py_POSIXMODULE_H
#define Py_POSIXMODULE_H
#ifdef __cplusplus
extern "C" {
#endif

#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif

#ifndef MS_WINDOWS
PyAPI_FUNC(PyObject *) _PyInt_FromUid(uid_t);
PyAPI_FUNC(PyObject *) _PyInt_FromGid(gid_t);
PyAPI_FUNC(int) _Py_Uid_Converter(PyObject *, void *);
PyAPI_FUNC(int) _Py_Gid_Converter(PyObject *, void *);
#endif /* MS_WINDOWS */

#ifdef __cplusplus
}
#endif
#endif /* !Py_POSIXMODULE_H */
back to top