From 9ee794d32ae2d367d6a98df650fd0797ea5b8575 Mon Sep 17 00:00:00 2001 From: Georg Holzmann Date: Wed, 17 Jan 2007 14:59:27 +0000 Subject: applied mac intel patch from t grill svn path=/trunk/externals/iemlib/; revision=7360 --- iemlib1/src/iemlib.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'iemlib1/src/iemlib.h') diff --git a/iemlib1/src/iemlib.h b/iemlib1/src/iemlib.h index 203a5e5..ba62f68 100644 --- a/iemlib1/src/iemlib.h +++ b/iemlib1/src/iemlib.h @@ -80,8 +80,13 @@ should have been by CPU type and not by operating system! */ #else #ifdef __APPLE__ +#ifdef __BIG_ENDIAN__ #define HIOFFSET 0 /* word offset to find MSB */ #define LOWOFFSET 1 /* word offset to find LSB */ +#else +#define HIOFFSET 1 /* word offset to find MSB */ +#define LOWOFFSET 0 /* word offset to find LSB */ +#endif #define int32 int /* a data type that has 32 bits */ #endif /* __APPLE__ */ -- cgit v1.2.1