summaryrefslogtreecommitdiff
path: root/sys/arch/m68k/include/endian.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/m68k/include/endian.h')
-rw-r--r--sys/arch/m68k/include/endian.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/sys/arch/m68k/include/endian.h b/sys/arch/m68k/include/endian.h
index 4422c1906c1..90ae3d5190e 100644
--- a/sys/arch/m68k/include/endian.h
+++ b/sys/arch/m68k/include/endian.h
@@ -1,4 +1,5 @@
-/* $NetBSD: endian.h,v 1.6 1994/10/26 07:50:45 cgd Exp $ */
+/* $OpenBSD: endian.h,v 1.2 1996/04/21 22:17:40 deraadt Exp $ */
+/* $NetBSD: endian.h,v 1.7 1996/03/29 01:40:31 briggs Exp $ */
/*
* Copyright (c) 1987, 1991 Regents of the University of California.
@@ -73,10 +74,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