diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-12-06 17:19:02 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-12-06 17:19:02 +0000 |
commit | f3a240ca8c81a2aaacfe850d2ea6d470be9c69f0 (patch) | |
tree | 67f580f89ee92012d481f5f1323870404749c7f9 /sys/netipx | |
parent | e1a1e49b6d8f502fccd06d6369cb83e0ed290131 (diff) |
use __x__ formats for __attribute__ arguments; guenther@gac.edu
Diffstat (limited to 'sys/netipx')
-rw-r--r-- | sys/netipx/ipx.h | 4 | ||||
-rw-r--r-- | sys/netipx/spx.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/netipx/ipx.h b/sys/netipx/ipx.h index 2b7827c9404..3e7f40a38c3 100644 --- a/sys/netipx/ipx.h +++ b/sys/netipx/ipx.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ipx.h,v 1.13 2000/09/22 14:56:22 millert Exp $ */ +/* $OpenBSD: ipx.h,v 1.14 2000/12/06 17:19:01 deraadt Exp $ */ /*- * @@ -111,7 +111,7 @@ */ #define IPX_HOSTADDRLEN 6 #define IPX_NETADDRLEN 4 -#define XXX __attribute__((packed)) +#define XXX __attribute__((__packed__)) typedef union ipx_host { diff --git a/sys/netipx/spx.h b/sys/netipx/spx.h index 46f72df40a2..9ee9c22f78d 100644 --- a/sys/netipx/spx.h +++ b/sys/netipx/spx.h @@ -1,4 +1,4 @@ -/* $OpenBSD: spx.h,v 1.3 1996/11/25 08:20:02 mickey Exp $ */ +/* $OpenBSD: spx.h,v 1.4 2000/12/06 17:19:01 deraadt Exp $ */ /*- * @@ -45,7 +45,7 @@ #include <sys/queue.h> -#define XXX __attribute__((packed)); +#define XXX __attribute__((__packed__)); /* * Definitions for IPX style Sequenced Packet Protocol |