different packing...

SVN revision: 9465
This commit is contained in:
Carsten Haitzler 2004-03-25 06:21:58 +00:00
parent ea5fbe2674
commit 5f6c023047
1 changed files with 2 additions and 3 deletions

View File

@ -245,12 +245,11 @@ struct _Embryo_Program
int run_count;
};
#pragma pack(push, 1)
struct _Embryo_Func_Stub
{
int address;
char name[sEXPMAX+1];
};
} __attribute__((packed));
struct _Embryo_Header
{
@ -271,7 +270,7 @@ struct _Embryo_Header
int pubvars; /* the "public variables" table */
int tags; /* the "public tagnames" table */
int nametable; /* name table, file version 7 only */
};
} __attribute__((packed));
void _embryo_fp_init(Embryo_Program *ep);