BizHawk/psx/octoshock/emuware/PACKED.h

13 lines
211 B
C
Raw Normal View History

2014-12-10 19:41:13 +00:00
#ifndef __GNUC__
#pragma pack(push, 1)
#pragma warning(disable : 4103)
#endif
#ifndef __PACKED
#ifdef __GNUC__
#define __PACKED __attribute__((__packed__))
#else
#define __PACKED
#endif
#endif