From 6ca04cca848ba121f492acef2be8e30656ad23d4 Mon Sep 17 00:00:00 2001 From: Bradley Bell Date: Mon, 11 Feb 2002 07:42:04 +0000 Subject: [PATCH] use WORDS_BIGENDIAN --- include/byteswap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/byteswap.h b/include/byteswap.h index ba95c15c..be6868ce 100644 --- a/include/byteswap.h +++ b/include/byteswap.h @@ -26,7 +26,7 @@ extern uint swapint(uint i); #define SWAPSHORT(x) (((ubyte)x << 8) | (((ushort)x) >> 8)) #define SWAPINT(x) ((x<<24) | (((ulong)x) >> 24) | ((x &0x0000ff00) << 8) | ((x & 0x00ff00000) >> 8)) -#ifndef BIGENDIAN //MACINTOSH +#ifndef WORDS_BIGENDIAN //MACINTOSH #define INTEL_INT(x) x #define INTEL_SHORT(x) x #else -- 2.39.2