NetBSD/sys/arch/hppa/include/bswap.h
dsl 67d47e0290 Change sys/arch/xxx/include/bswap.h to #include machine/byte_swap.h then
sys/bswap.h in order to pick up the MD inline routines and the constant
folding definitions in the right order.
Code can include either sys/bswap.h or machine/bswap.h with the same effect.
2006-01-31 07:49:18 +00:00

14 lines
267 B
C

/* $NetBSD: bswap.h,v 1.2 2006/01/31 07:49:18 dsl Exp $ */
/* Written by Manuel Bouyer. Public domain */
#ifndef _HPPA_BSWAP_H_
#define _HPPA_BSWAP_H_
#include <machine/byte_swap.h>
#define __BSWAP_RENAME
#include <sys/bswap.h>
#endif /* !_HPPA_BSWAP_H_ */