diff options
author | jsorg71 <jsorg71> | 2005-12-09 03:10:16 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2005-12-09 03:10:16 +0000 |
commit | f29d4c3f634e9725c42e3cb0ebd1af933d01aed4 (patch) | |
tree | 067b22aea9fecfbb4a584f17c3b44cea7688f60b /common/arch.h | |
parent | 2416b3a23e93ff63348c3073ca59541e229bceae (diff) | |
download | xrdp-proprietary-f29d4c3f634e9725c42e3cb0ebd1af933d01aed4.tar.gz xrdp-proprietary-f29d4c3f634e9725c42e3cb0ebd1af933d01aed4.zip |
powerpc is big endian
Diffstat (limited to 'common/arch.h')
-rw-r--r-- | common/arch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/arch.h b/common/arch.h index f7d7c335..2b5d6bc0 100644 --- a/common/arch.h +++ b/common/arch.h @@ -22,7 +22,7 @@ #define ARCH_H /* check endianess */ -#if defined(__sparc__) +#if defined(__sparc__) || defined(__PPC__) #define B_ENDIAN #elif __BYTE_ORDER == __LITTLE_ENDIAN #define L_ENDIAN |