aboutsummaryrefslogtreecommitdiff
path: root/iemlib2/src/iemlib.h
diff options
context:
space:
mode:
authorGeorg Holzmann <grholzi@users.sourceforge.net>2007-01-17 14:52:17 +0000
committerGeorg Holzmann <grholzi@users.sourceforge.net>2007-01-17 14:52:17 +0000
commit100242128792ea2cb671838f5cffb9fc974c535f (patch)
tree77b2c71ed160ba18b14a2883e4f18bbabb6eb52c /iemlib2/src/iemlib.h
parentf723e97c0b1cd6674650776690781863e0e6804f (diff)
applied mac intel fix patch from thomas grill
svn path=/trunk/externals/iemlib/; revision=7359
Diffstat (limited to 'iemlib2/src/iemlib.h')
-rw-r--r--iemlib2/src/iemlib.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/iemlib2/src/iemlib.h b/iemlib2/src/iemlib.h
index 36d47ca..46bc8d7 100644
--- a/iemlib2/src/iemlib.h
+++ b/iemlib2/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__ */