Replace all __attribute_packed by new __packed_struct macros.

This commit is contained in:
Markus F.X.J. Oberhumer
2009-02-12 05:20:23 +01:00
parent be57adaee7
commit 9adef80d6b
13 changed files with 80 additions and 137 deletions
+2 -4
View File
@@ -62,8 +62,7 @@ protected:
virtual int readFileHeader();
virtual bool checkFileHeader();
struct tos_header_t
{
__packed_struct(tos_header_t)
BE16 fh_magic;
BE32 fh_text;
BE32 fh_data;
@@ -72,8 +71,7 @@ protected:
BE32 fh_reserved;
BE32 fh_flag;
BE16 fh_reloc;
}
__attribute_packed;
__packed_struct_end()
tos_header_t ih, oh;