1
0
Fork 0

removed push/pop from #pragma pack

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@218
This commit is contained in:
Sjoerd van der Berg 2002-08-25 16:38:01 +00:00
parent 263d74180f
commit 4ff0164543

View file

@ -29,7 +29,7 @@
dos work a bit easier.
*/
#pragma pack (push,1)
#pragma pack (1)
struct sPSP {
Bit8u exit[2]; /* CP/M-like exit poimt */
@ -86,7 +86,7 @@ struct sFCB {
Bit32u rel_record; //open does not handle this
} GCC_ATTRIBUTE(packed);
#pragma pack (pop)
#pragma pack ()
#define sGet(s,m) GetIt(((s *)0)->m,(PhysPt)&(((s *)0)->m))
#define sSave(s,m,val) SaveIt(((s *)0)->m,(PhysPt)&(((s *)0)->m),val)