1 /* $NetBSD: bswap.h,v 1.3 2001/05/30 13:08:34 tsubai Exp $ */ 2 3 #ifndef _POWERPC_BSWAP_H_ 4 #define _POWERPC_BSWAP_H_ 5 6 #include <sys/bswap.h> 7 8 #ifdef __GNUC__ 9 #include <powerpc/byte_swap.h> 10 #define bswap16(x) __bswap16(x) 11 #define bswap32(x) __bswap32(x) 12 #endif 13 14 #endif /* _POWERPC_BSWAP_H_ */ 15