diff options
Diffstat (limited to 'sys/arch/amd64/stand')
-rw-r--r-- | sys/arch/amd64/stand/libsa/pxe.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/amd64/stand/libsa/pxe.h b/sys/arch/amd64/stand/libsa/pxe.h index e03e7d76616..80a14811035 100644 --- a/sys/arch/amd64/stand/libsa/pxe.h +++ b/sys/arch/amd64/stand/libsa/pxe.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pxe.h,v 1.3 2007/11/25 20:00:03 martynas Exp $ */ +/* $OpenBSD: pxe.h,v 1.4 2010/05/09 19:41:43 nicm Exp $ */ /* $NetBSD: pxe.h,v 1.1 2002/02/16 03:37:40 thorpej Exp $ */ /* @@ -50,13 +50,13 @@ typedef struct { uint16_t offset; uint16_t segment; -} SEGOFF16_t __attribute__((__packed__)); +} __packed SEGOFF16_t; typedef struct { uint16_t Seg_Addr; uint32_t Phy_Addr; uint16_t Seg_Size; -} SEGDESC_t __attribute__((__packed__)); +} __packed SEGDESC_t; typedef uint16_t SEGSEL_t; typedef uint16_t PXENV_STATUS_t; |