Blame config/linux/pyconfig.h

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