blob: 5d280a291be65eaa669a6cafa455212351f75362 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#ifndef PY_PYCONFIG_H
#define PY_PYCONFIG_H
#include "osapi/modern.h"
#include "osapi/rtld.h"
#include "osapi/midipix.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
#ifndef HAVE_IF_NAMEINDEX
#define HAVE_IF_NAMEINDEX 1
#endif
#ifndef HAVE_SIGINFO_T_SI_BAND
#define HAVE_SIGINFO_T_SI_BAND 1
#endif
#ifndef PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT
#define PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT 1
#endif
#endif
|