[HHPCOMP] Add ARM (32-bit) types (#3548)

ARM32 seems to use the same type defines as i386 and friends.
Let's allow the thing to be compiled again!

CORE-17517

Signed-off-by: Konrad Dybcio <[email protected]>
This commit is contained in:
Konrad Dybcio
2021-03-24 09:32:11 +03:00
committed by GitHub
parent e6bea426f3
commit 4c7b71ac4f
+2 -1
View File
@@ -49,7 +49,8 @@ typedef unsigned __int64 UInt64;
/* Sparc */
/* MIPS */
/* PPC */
#elif __i386__ || __sun || __sgi || __ppc__
/* ARM (32-bit) */
#elif __i386__ || __sun || __sgi || __ppc__ || __arm__
typedef unsigned char UChar;
typedef short Int16;
typedef unsigned short UInt16;