You've already forked Microtransactions64
mirror of
https://github.com/Print-and-Panic/Microtransactions64.git
synced 2026-01-21 10:17:19 -08:00
12 lines
346 B
C
12 lines
346 B
C
#include "platform_info.h"
|
|
|
|
#if IS_BIG_ENDIAN && IS_64_BIT
|
|
#error msgbegin --endian big --bitwidth 64 msgend
|
|
#elif IS_BIG_ENDIAN && !IS_64_BIT
|
|
#error msgbegin --endian big --bitwidth 32 msgend
|
|
#elif !IS_BIG_ENDIAN && IS_64_BIT
|
|
#error msgbegin --endian little --bitwidth 64 msgend
|
|
#else
|
|
#error msgbegin --endian little --bitwidth 32 msgend
|
|
#endif
|