Blame config/midipix/pyconfig.h

960ea4
#ifndef PY_PYCONFIG_H
960ea4
#define PY_PYCONFIG_H
960ea4
960ea4
#include "osapi/modern.h"
960ea4
#include "osapi/midipix.h"
960ea4
960ea4
/* cf. Modules/posixmodule.c */
960ea4
#define HAVE_BROKEN_NICE 1
960ea4
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
960ea4
#endif