summaryrefslogtreecommitdiff
path: root/sys/arch/m68k/include
diff options
context:
space:
mode:
authorAnil Madhavapeddy <avsm@cvs.openbsd.org>2003-11-16 20:30:08 +0000
committerAnil Madhavapeddy <avsm@cvs.openbsd.org>2003-11-16 20:30:08 +0000
commit4e13879e64b64a3bf17cb067b974522e66b3a70e (patch)
tree46805a15b406a5fde2f0d261f52111f68d5a812d /sys/arch/m68k/include
parent95c782cbe9adab15695a4d56e505761194cc49ee (diff)
convert __attribute__((__packed__)) to __packed so that parsers unaware
of gcc extensions have more of a chance. ok mcbride@, no objections from millert@, deraadt@
Diffstat (limited to 'sys/arch/m68k/include')
-rw-r--r--sys/arch/m68k/include/frame.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/m68k/include/frame.h b/sys/arch/m68k/include/frame.h
index 185d606e513..b2eaa751aec 100644
--- a/sys/arch/m68k/include/frame.h
+++ b/sys/arch/m68k/include/frame.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: frame.h,v 1.7 2003/06/02 23:27:48 millert Exp $ */
+/* $OpenBSD: frame.h,v 1.8 2003/11/16 20:30:06 avsm Exp $ */
/* $NetBSD: frame.h,v 1.15 1997/05/03 12:49:05 mycroft Exp $ */
/*
@@ -51,7 +51,7 @@ struct frame {
u_int tf_pc;
u_short tf_format:4,
tf_vector:12;
- } __attribute__((__packed__)) F_t;
+ } __packed F_t;
union F_u {
struct fmt2 {
u_int f_iaddr;