diff options
author | Alex Waugh <alexwaugh@php.net> | 2006-03-07 22:37:53 +0000 |
---|---|---|
committer | Alex Waugh <alexwaugh@php.net> | 2006-03-07 22:37:53 +0000 |
commit | b8d26da1be6e939b5beae0b46d567bf367f1ee33 (patch) | |
tree | 0b22eb31073c093f784b9f3fadb83a5f1106b350 /main/php.h | |
parent | 5dea328391c8ce728386da8b19e198c75cca4762 (diff) | |
download | php-git-b8d26da1be6e939b5beae0b46d567bf367f1ee33.tar.gz |
MFH Fix for RISC OS
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php.h b/main/php.h index 0dbb55c570..001a277029 100644 --- a/main/php.h +++ b/main/php.h @@ -417,7 +417,7 @@ END_EXTERN_C() */ #ifndef XtOffset -#if defined(CRAY) || (defined(__arm) && !defined(LINUX)) +#if defined(CRAY) || (defined(__arm) && !(defined(LINUX) || defined(__riscos__))) #ifdef __STDC__ #define XtOffset(p_type, field) _Offsetof(p_type, field) #else |