diff options
author | grr <grr@cvs.openbsd.org> | 1997-06-24 20:50:43 +0000 |
---|---|---|
committer | grr <grr@cvs.openbsd.org> | 1997-06-24 20:50:43 +0000 |
commit | 592f9dc5e7de7d1cdd4044b59f1c32d5ef3e8d4f (patch) | |
tree | d914308b1072134a1920cad1c93caae1484bdc64 /sys/arch | |
parent | 94672a5dce650190f7ca828c6f994556b8d60737 (diff) |
change like sparc/include/endian.h
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/powerpc/include/endian.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/powerpc/include/endian.h b/sys/arch/powerpc/include/endian.h index 15cb3226815..281a4094c5d 100644 --- a/sys/arch/powerpc/include/endian.h +++ b/sys/arch/powerpc/include/endian.h @@ -1,4 +1,4 @@ -/* $OpenBSD: endian.h,v 1.4 1997/04/04 03:05:34 millert Exp $ */ +/* $OpenBSD: endian.h,v 1.5 1997/06/24 20:50:42 grr Exp $ */ /* $NetBSD: endian.h,v 1.2 1996/10/13 03:16:41 christos Exp $ */ /*- @@ -71,10 +71,10 @@ __END_DECLS #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) +#define NTOHL(x) (x) +#define NTOHS(x) (x) +#define HTONL(x) (x) +#define HTONS(x) (x) #else |