summaryrefslogtreecommitdiff
path: root/sys/arch/mips64
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2014-03-11 19:45:29 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2014-03-11 19:45:29 +0000
commit0ea3222fb70c596dc5798f2e1db2b6698354ada9 (patch)
treef103b881a4bb2aeafe44ea5251ff8d61c5249e91 /sys/arch/mips64
parent24dc6033bb5e10e9a21d280b2d03080b5e7c06c2 (diff)
lint is gone, and the 'lint' conditional was never in the implementation
namespace, so stop changing behavior when it's #defined ok beck@ krw@
Diffstat (limited to 'sys/arch/mips64')
-rw-r--r--sys/arch/mips64/include/endian.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mips64/include/endian.h b/sys/arch/mips64/include/endian.h
index 71d0554ec60..c8ecfde3bfc 100644
--- a/sys/arch/mips64/include/endian.h
+++ b/sys/arch/mips64/include/endian.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: endian.h,v 1.7 2011/03/23 16:54:36 pirofti Exp $ */
+/* $OpenBSD: endian.h,v 1.8 2014/03/11 19:45:27 guenther Exp $ */
/*
* Copyright (c) 2001-2002 Opsycon AB (www.opsycon.se / www.opsycon.com)
@@ -36,7 +36,7 @@
#define _BYTE_ORDER _BIG_ENDIAN
#endif
-#if !defined(_BYTE_ORDER) && !defined(lint)
+#if !defined(_BYTE_ORDER)
#error "__MIPSEL__ or __MIPSEB__ must be defined to define BYTE_ORDER!!!"
#endif