#ifndef PY_PYCONFIG_H
#define PY_PYCONFIG_H
#include "osapi/modern.h"
#include "osapi/linux.h"
#include "osapi/overrides.h"
/* cf. Modules/posixmodule.c */
#define HAVE_BROKEN_NICE 1
#ifndef LONG_MAX
#define LONG_MAX __LONG_MAX__
#endif
#ifndef SIZEOF_VOID_P
#define SIZEOF_VOID_P __SIZEOF_POINTER__
#endif
#ifndef SIZEOF_INT
#define SIZEOF_INT __SIZEOF_INT__
#endif
#ifndef SIZEOF_LONG
#define SIZEOF_LONG __SIZEOF_LONG__
#endif
#ifndef SIZEOF_LONG_LONG
#define SIZEOF_LONG_LONG __SIZEOF_LONG_LONG__
#endif
#ifndef SIZEOF_SIZE_T
#define SIZEOF_SIZE_T __SIZEOF_SIZE_T__
#endif
#ifndef SIZEOF_PID_T
#define SIZEOF_PID_T __SIZEOF_INT__
#endif
#endif