Blame config/linux/pyconfig.h

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