]> git.saurik.com Git - apple/xnu.git/blobdiff - osfmk/ppc/endian.h
xnu-792.6.56.tar.gz
[apple/xnu.git] / osfmk / ppc / endian.h
index 15f706bb5e41bb9ac6672bed647901d4a52825ec..6d8f881941f4cea73e44e2c55f8d04837d77888a 100644 (file)
@@ -3,8 +3,6 @@
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
- * Copyright (c) 1999-2003 Apple Computer, Inc.  All Rights Reserved.
- * 
  * This file contains Original Code and/or Modifications of Original Code
  * as defined in and that are subject to the Apple Public Source License
  * Version 2.0 (the 'License'). You may not use this file except in
@@ -38,7 +36,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