blob: 6f41a28b20ea32afaf6ee21c18799a4df96f52d6 [file] [log] [blame]
/*
* byteswap.h
*/
#ifndef _BYTESWAP_H
#define _BYTESWAP_H
#include <klibc/compiler.h>
#include <asm/byteorder.h>
#define bswap_16(x) __swab16(x)
#define bswap_32(x) __swab32(x)
#define bswap_64(x) __swab64(x)
#endif /* _BYTESWAP_H */