m377 signed char for int8 on android might fix android troubles for na1

This commit is contained in:
dinkc64 2021-03-11 10:46:19 -05:00
parent aff623f947
commit dbf4afebf2

View File

@ -32,7 +32,7 @@
/* Allow for architectures that don't have 8-bit sizes */
#if UCHAR_MAX == 0xff
#define int8 char
#define int8 signed char
#define MAKE_INT_8(A) (int8)((A)&0xff)
#else
#define int8 int