summaryrefslogtreecommitdiff
path: root/as/byteord.h
diff options
context:
space:
mode:
Diffstat (limited to 'as/byteord.h')
-rw-r--r--as/byteord.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/as/byteord.h b/as/byteord.h
index a0d14e1..baf02d0 100644
--- a/as/byteord.h
+++ b/as/byteord.h
@@ -3,16 +3,16 @@
/* These are for the targets of everything and for linker source too. */
#ifdef I8086
-# define BIG_ENDIAN 0
+# define INT_BIG_ENDIAN 0
# define LONG_BIG_ENDIAN 0 /* except longs are back to front for Xenix */
#endif
#ifdef I80386
-# define BIG_ENDIAN 0
+# define INT_BIG_ENDIAN 0
# define LONG_BIG_ENDIAN 0
#endif
#ifdef MC6809
-# define BIG_ENDIAN 1 /* byte order in words is high-low */
+# define INT_BIG_ENDIAN 1 /* byte order in words is high-low */
# define LONG_BIG_ENDIAN 1 /* byte order in longs is high-low */
#endif