blob: 24df4bd32ee1451fbe812f5b6df37c39513c8cec [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 */