1 /* $NetBSD: bswap.h,v 1.1 1999/01/15 13:31:27 bouyer Exp $ */ 2 3 /* Written by Manuel Bouyer. Public domain */ 4 5 #ifndef _PPC_BSWAP_H_ 6 #define _PPC_BSWAP_H_ 7 8 #include <sys/cdefs.h> 9 10 __BEGIN_DECLS 11 u_int16_t bswap16 __P((u_int16_t)); 12 u_int32_t bswap32 __P((u_int32_t)); 13 u_int64_t bswap64 __P((u_int64_t)); 14 __END_DECLS 15 16 #endif /* _PPC_BSWAP_H_ */ 17