00001 00041 #ifndef ARCH_BYTEORDER_H_INCLUDED 00042 #define ARCH_BYTEORDER_H_INCLUDED 00043 00044 #define CPU_IS_BIG_ENDIAN 00045 00046 #ifdef __GNUC__ 00047 # define swab32(x) __builtin_bswap_32(x) 00048 # define swab16(x) __builtin_bswap_16(x) 00049 #endif 00050 00051 #endif /* ARCH_BYTEORDER_H_INCLUDED */
1.5.8