summaryrefslogtreecommitdiff
blob: caf6d43cf24732ceb56898d32b6a4a72dba875c9 (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
/SIZEOF_LONG/c
#ifdef __LP64__
#define SIZEOF_LONG 8
#else /* !__LP64__ */
#define SIZEOF_LONG 4
#endif /* __LP64__ */
.
/SIZEOF_SIZE_T/c
#ifdef __LP64__
#define SIZEOF_SIZE_T 8
#else /* !__LP64__ */
#define SIZEOF_SIZE_T 4
#endif /* __LP64__ */
.
/SIZEOF_TIME_T/c
#ifdef __LP64__
#define SIZEOF_TIME_T 8
#else /* !__LP64__ */
#define SIZEOF_TIME_T 4
#endif /* __LP64__ */
.
/SIZEOF_VOIDP/c
#ifdef __LP64__
#define SIZEOF_VOIDP 8
#else /* !__LP64__ */
#define SIZEOF_VOIDP 4
#endif /* __LP64__ */
.
w