diff options
Diffstat (limited to 'src/include/port/darwin.h')
-rw-r--r-- | src/include/port/darwin.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/port/darwin.h b/src/include/port/darwin.h index 5d5072aa550..0d35a8a2f49 100644 --- a/src/include/port/darwin.h +++ b/src/include/port/darwin.h @@ -1,4 +1,4 @@ -#define __darwin__ 1 +#define __darwin__ 1 #if defined(__ppc__) #define HAS_TEST_AND_SET @@ -6,6 +6,8 @@ #if defined(__ppc__) typedef unsigned int slock_t; + #else typedef unsigned char slock_t; + #endif |