mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
23 lines
308 B
Plaintext
23 lines
308 B
Plaintext
/#define SIZEOF_LONG/c
|
|
#ifdef __LP64__
|
|
#define SIZEOF_LONG 8
|
|
#else
|
|
#define SIZEOF_LONG 4
|
|
#endif
|
|
.
|
|
/#define SIZEOF_SIZE_T/c
|
|
#ifdef __LP64__
|
|
#define SIZEOF_SIZE_T 8
|
|
#else
|
|
#define SIZEOF_SIZE_T 4
|
|
#endif
|
|
.
|
|
/#define SIZEOF_VOID_P/c
|
|
#ifdef __LP64__
|
|
#define SIZEOF_VOID_P 8
|
|
#else
|
|
#define SIZEOF_VOID_P 4
|
|
#endif
|
|
.
|
|
w
|