fix INT64 def and add warning if not set

This commit is contained in:
Yay295 2022-10-06 17:59:33 -05:00 committed by Yay295
parent 599979caae
commit 509671c53e

View File

@ -61,7 +61,9 @@
#if SIZEOF_LONG == 8
#define INT64 long
#elif SIZEOF_LONG_LONG == 8
#define INT64 long
#define INT64 long long
#else
#warning Cannot find required 64-bit integer type
#endif
#define INT8 signed char