[HHPCOMP] Add ARM64/AArch64 types

These were missing... not anymore!

Addendum to 4c7b71ac. CORE-17518

Signed-off-by: Konrad Dybcio <konrad.dybcio@somainline.org>
This commit is contained in:
Konrad Dybcio 2021-04-11 03:11:13 +02:00 committed by Stanislav Motylkov
parent 58a3928571
commit d5421d5a3d
No known key found for this signature in database
GPG key ID: AFE513258CBA9E92

View file

@ -59,9 +59,11 @@ typedef unsigned long UInt32;
typedef long long Int64;
typedef unsigned long long UInt64;
/* x86-64 */
/* x86-64 */
/* IA-64 */
/* ARM64/AArch64 */
/* Note that these may be appropriate for other 64-bit machines. */
#elif __x86_64__ || __ia64__
#elif __x86_64__ || __ia64__ || __aarch64__
typedef unsigned char UChar;
typedef short Int16;
typedef unsigned short UInt16;