1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-10 13:07:10 +02:00

Endianess and os-specific fixes

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3276 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2006-02-26 15:50:31 +00:00
parent 65543d249c
commit 5fe61d2224

View File

@ -44,8 +44,18 @@
#include <string.h>
#include <errno.h>
#include <unistd.h>
#if defined(__APPLE__)
#include <machine/endian.h>
#include <machine/byte_order.h>
#define __BYTE_ORDER BYTE_ORDER
#define __BIG_ENDIAN BIG_ENDIAN
#define bswap_16(x) NXSwapShort(x)
#define bswap_32(x) NXSwapInt(x)
#define bswap_64(x) NXSwapLongLong(x)
#else
#include <endian.h>
#include <byteswap.h>
#endif
#if __BYTE_ORDER == __BIG_ENDIAN
#define STORE32_LE(X) bswap_32(X)