n64-emu/include/utils/pack.h
2023-09-22 11:28:38 +09:00

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