mirror of
https://github.com/kmc-jp/n64-emu.git
synced 2025-04-02 10:21:43 -04:00
14 lines
443 B
C
14 lines
443 B
C
#ifndef INCLUDE_GUARD_ED0640F1_2B5E_4A09_8485_04C925A21278
|
|
#define INCLUDE_GUARD_ED0640F1_2B5E_4A09_8485_04C925A21278
|
|
|
|
// PACK
|
|
#ifdef __GNUC__
|
|
#define PACK(Declaration) Declaration __attribute__((__packed__))
|
|
#endif
|
|
|
|
#ifdef _MSC_VER
|
|
#define PACK(Declaration) \
|
|
__pragma(pack(push, 1)) Declaration __pragma(pack(pop))
|
|
#endif
|
|
|
|
#endif // INCLUDE_GUARD_ED0640F1_2B5E_4A09_8485_04C925A21278
|