blob: 5f0948ddb68a810d7f6cead88226a29bd5f9d6a9 [file] [log] [blame]
/*
* byteswap.h
*/
#ifndef _BYTESWAP_H
#define _BYTESWAP_H
#include <endian.h>
#define bswap_16(x) __swab16(x)
#define bswap_32(x) __swab32(x)
#define bswap_64(x) __swab64(x)
#endif /* _BYTESWAP_H */