mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-22 22:37:01 +08:00
14 lines
173 B
C
14 lines
173 B
C
#define __darwin__ 1
|
|
|
|
#if defined(__ppc__)
|
|
#define HAS_TEST_AND_SET
|
|
#endif
|
|
|
|
#if defined(__ppc__)
|
|
typedef unsigned int slock_t;
|
|
|
|
#else
|
|
typedef unsigned char slock_t;
|
|
|
|
#endif
|