]> git.saurik.com Git - apple/xnu.git/blobdiff - osfmk/ppc/endian.h
xnu-517.tar.gz
[apple/xnu.git] / osfmk / ppc / endian.h
index 15f706bb5e41bb9ac6672bed647901d4a52825ec..2767149217dc429d98893adc53a783ed06424325 100644 (file)
@@ -38,7 +38,7 @@
 #define        BIG_ENDIAN      4321    /* most-significant byte first (IBM, net) */
 #define        PDP_ENDIAN      3412    /* LSB first in word, MSW first in long (pdp) */
 
-#if _BIG_ENDIAN                        /* Predefined by compiler */
+#ifdef __BIG_ENDIAN__                  /* Predefined by compiler */
 #define        BYTE_ORDER      BIG_ENDIAN      /* byte order we use on ppc */
 #define ENDIAN         BIG
 #else