2003-04-26 22:39:25 +04:00
|
|
|
/* $NetBSD: bswap.h,v 1.1 2003/04/26 18:39:38 fvdl Exp $ */
|
2001-06-19 04:19:12 +04:00
|
|
|
|
|
|
|
/* Written by Manuel Bouyer. Public domain */
|
|
|
|
|
|
|
|
#ifndef _MACHINE_BSWAP_H_
|
|
|
|
#define _MACHINE_BSWAP_H_
|
|
|
|
|
|
|
|
#define __BSWAP_RENAME
|
|
|
|
#include <sys/bswap.h>
|
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
|
|
|
|
#include <machine/byte_swap.h>
|
|
|
|
#define bswap16(x) __byte_swap_word(x)
|
|
|
|
#define bswap32(x) __byte_swap_long(x)
|
|
|
|
|
|
|
|
#endif /* __GNUC__ */
|
|
|
|
|
|
|
|
#endif /* !_MACHINE_BSWAP_H_ */
|