$NetBSD: patch-as,v 1.1.1.1 2007/06/14 19:42:12 bouyer Exp $ --- ioemu/bswap.h.orig 2006-04-13 19:48:38.000000000 +0200 +++ ioemu/bswap.h @@ -5,6 +5,12 @@ #include +#ifdef HAVE_MACHINE_BSWAP_H +#include +#include +#include +#else + #ifdef HAVE_BYTESWAP_H #include #else @@ -58,6 +64,8 @@ static inline uint64_t bswap64(uint64_t return bswap_64(x); } +#endif /* ! HAVE_MACHINE_BSWAP_H */ + static inline void bswap16s(uint16_t *s) { *s = bswap16(*s);