diff options
Diffstat (limited to 'src/m/next.h')
-rw-r--r-- | src/m/next.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/m/next.h b/src/m/next.h index d36bad2bbe6..63062135c94 100644 --- a/src/m/next.h +++ b/src/m/next.h @@ -33,6 +33,14 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define LONGBITS 32 /* Number of bits in a long */ +/* Define WORDS_BIG_ENDIAN iff lowest-numbered byte in a word + is the most significant byte. */ + +/* Let the compiler tell us. */ +#ifdef __BIG_ENDIAN__ +#define WORDS_BIG_ENDIAN +#endif + /* Define how to take a char and sign-extend into an int. On machines where char is signed, this is a no-op. */ |