blob: 67ecc11a1c3cd988d5df19cc5921a536b3e418fc (
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
|
/HAVE_LARGEFILE_SUPPORT/c
#ifdef __LP64__
/* #undef HAVE_LARGEFILE_SUPPORT */
#else
#define HAVE_LARGEFILE_SUPPORT 1
#endif
.
/SIZEOF_LONG/c
#ifdef __LP64__
#define SIZEOF_LONG 8
#else
#define SIZEOF_LONG 4
#endif
.
/SIZEOF_PTHREAD_T/c
#ifdef __LP64__
#define SIZEOF_PTHREAD_T 8
#else
#define SIZEOF_PTHREAD_T 4
#endif
.
/SIZEOF_SIZE_T/c
#ifdef __LP64__
#define SIZEOF_SIZE_T 8
#else
#define SIZEOF_SIZE_T 4
#endif
.
/SIZEOF_TIME_T/c
#ifdef __LP64__
#define SIZEOF_TIME_T 8
#else
#define SIZEOF_TIME_T 4
#endif
.
/SIZEOF_UINTPTR_T/c
#ifdef __LP64__
#define SIZEOF_UINTPTR_T 8
#else
#define SIZEOF_UINTPTR_T 4
#endif
.
/SIZEOF_VOID_P/c
#ifdef __LP64__
#define SIZEOF_VOID_P 8
#else
#define SIZEOF_VOID_P 4
#endif
.
w
|