diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-11-09 23:05:20 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-11-09 23:05:20 +0000 |
commit | 4edcaf7855a1c7029b83b06f8ff7581a073edfd3 (patch) | |
tree | 2e57aa8c6bb8ca1d6db267469e21a46ddf009cdb /sys/arch/amiga/include | |
parent | bc1c3823e1390426b1ec28ed9ea209fad460d50d (diff) |
New endian.h design. All architectures now use a common file for the bulk
part. Some ports can optimize the swap operations. This also means the
general API is extended with swap16, swap32, htobe16, htobe32, betoh16,
betoh32, htole16, htole32, letoh16 and letoh32.
Diffstat (limited to 'sys/arch/amiga/include')
-rw-r--r-- | sys/arch/amiga/include/endian.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/amiga/include/endian.h b/sys/arch/amiga/include/endian.h index bfd856c0de2..0fd359c357b 100644 --- a/sys/arch/amiga/include/endian.h +++ b/sys/arch/amiga/include/endian.h @@ -1,9 +1,9 @@ -/* $OpenBSD: endian.h,v 1.2 1996/11/25 13:11:14 niklas Exp $ */ +/* $OpenBSD: endian.h,v 1.3 1997/11/09 23:05:01 niklas Exp $ */ /* $NetBSD: endian.h,v 1.7 1994/10/26 02:06:09 cgd Exp $ */ -#ifndef _MACHINE_ENDIAN_H_ -#define _MACHINE_ENDIAN_H_ +#ifndef _AMIGA_ENDIAN_H_ +#define _AMIGA_ENDIAN_H_ #include <m68k/endian.h> -#endif +#endif /* _AMIGA_ENDIAN_H */ |