summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k/machine
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1997-06-25 12:32:55 +0000
committerJason Downs <downsj@cvs.openbsd.org>1997-06-25 12:32:55 +0000
commitc572c52a5526fc9e50a8fec655bd2d43eb2b7aa9 (patch)
tree8e7a9ac003675b28a44bc2a456f52469e5b47295 /sys/arch/mvme88k/machine
parent696d35f3b13afe373a3def0699a693ad4c7f01c4 (diff)
Big endian HTON?() macros should be (void)(x).
Diffstat (limited to 'sys/arch/mvme88k/machine')
-rw-r--r--sys/arch/mvme88k/machine/endian.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/mvme88k/machine/endian.h b/sys/arch/mvme88k/machine/endian.h
index 154bfbd687f..490523f6f84 100644
--- a/sys/arch/mvme88k/machine/endian.h
+++ b/sys/arch/mvme88k/machine/endian.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)endian.h 8.1 (Berkeley) 6/11/93
- * $Id: endian.h,v 1.1 1997/03/03 19:30:24 rahnds Exp $
+ * $Id: endian.h,v 1.2 1997/06/25 12:32:52 downsj Exp $
*/
#ifndef _ENDIAN_H_
@@ -73,10 +73,10 @@ __END_DECLS
#define htonl(x) (x)
#define htons(x) (x)
-#define NTOHL(x) (x)
-#define NTOHS(x) (x)
-#define HTONL(x) (x)
-#define HTONS(x) (x)
+#define NTOHL(x) (void)(x)
+#define NTOHS(x) (void)(x)
+#define HTONL(x) (void)(x)
+#define HTONS(x) (void)(x)
#else