From 893dbf3f3bc7671e44282f28fca64afc78778deb Mon Sep 17 00:00:00 2001 From: nbd Date: Tue, 10 Oct 2006 16:51:25 +0000 Subject: fix mtd-utils compile on freebsd git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@5020 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- tools/include/endian.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tools/include/endian.h') diff --git a/tools/include/endian.h b/tools/include/endian.h index 4ea34cdd0..9bfc652b9 100644 --- a/tools/include/endian.h +++ b/tools/include/endian.h @@ -9,6 +9,11 @@ #define bswap_16(x) NXSwapShort(x) #define bswap_32(x) NXSwapInt(x) #define bswap_64(x) NXSwapLongLong(x) +#elif defined(__FreeBSD__) +#include +#define bswap_16(x) bswap16(x) +#define bswap_32(x) bswap32(x) +#define bswap_64(x) bswap64(x) #else #include #define bswap_16(x) swap16(x) -- cgit v1.2.3