2008-10-26 03:08:15 +03:00
|
|
|
/* $NetBSD: bswap.h,v 1.3 2008/10/26 00:08:15 mrg Exp $ */
|
2001-06-19 04:19:12 +04:00
|
|
|
|
|
|
|
/* Written by Manuel Bouyer. Public domain */
|
|
|
|
|
2008-10-26 03:08:15 +03:00
|
|
|
#ifndef _X86_64_BSWAP_H_
|
|
|
|
#define _X86_64_BSWAP_H_
|
|
|
|
|
|
|
|
#ifdef __x86_64__
|
2001-06-19 04:19:12 +04:00
|
|
|
|
|
|
|
#include <machine/byte_swap.h>
|
|
|
|
|
2006-01-31 10:49:18 +03:00
|
|
|
#define __BSWAP_RENAME
|
|
|
|
#include <sys/bswap.h>
|
2001-06-19 04:19:12 +04:00
|
|
|
|
2008-10-26 03:08:15 +03:00
|
|
|
#else /* __x86_64__ */
|
|
|
|
|
|
|
|
#include <i386/bswap.h>
|
|
|
|
|
|
|
|
#endif /* __x86_64__ */
|
|
|
|
|
|
|
|
#endif /* !_X86_64_BSWAP_H_ */
|