diff options
author | Paul Irofti <pirofti@cvs.openbsd.org> | 2011-03-11 15:17:09 +0000 |
---|---|---|
committer | Paul Irofti <pirofti@cvs.openbsd.org> | 2011-03-11 15:17:09 +0000 |
commit | ceacd60e5da242add0e76c67bad05065cbc8b952 (patch) | |
tree | 41c1947939caca061becb0e0b1a708880a694528 /sys/arch/mips64 | |
parent | db832097f4874722934efa9ebe9f11ae85462991 (diff) |
Use _MACHINE_ENDIAN_H_ for this is The Right Thing To Do.
Okay guenther@, millert@.
Diffstat (limited to 'sys/arch/mips64')
-rw-r--r-- | sys/arch/mips64/include/endian.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/mips64/include/endian.h b/sys/arch/mips64/include/endian.h index 4995fd19899..093c0bc100e 100644 --- a/sys/arch/mips64/include/endian.h +++ b/sys/arch/mips64/include/endian.h @@ -1,4 +1,4 @@ -/* $OpenBSD: endian.h,v 1.5 2006/02/27 23:35:59 miod Exp $ */ +/* $OpenBSD: endian.h,v 1.6 2011/03/11 15:17:08 pirofti Exp $ */ /* * Copyright (c) 2001-2002 Opsycon AB (www.opsycon.se / www.opsycon.com) @@ -26,8 +26,8 @@ * */ -#ifndef _MIPS64_ENDIAN_H_ -#define _MIPS64_ENDIAN_H_ +#ifndef _MACHINE_ENDIAN_H_ +#define _MACHINE_ENDIAN_H_ #if defined(__MIPSEL__) #define _BYTE_ORDER _LITTLE_ENDIAN @@ -44,4 +44,4 @@ #define __STRICT_ALIGNMENT -#endif /* _MIPS64_ENDIAN_H_ */ +#endif /* _MACHINE_ENDIAN_H_ */ |