arm: Change _int32_t from int to long to match the compiler

This commit is contained in:
YAMAMOTO Takashi 2020-11-09 17:27:13 +09:00 committed by Xiang Xiao
parent b8e559bb2e
commit b1ed95f29d

View File

@ -56,8 +56,8 @@ typedef unsigned char _uint8_t;
typedef signed short _int16_t;
typedef unsigned short _uint16_t;
typedef signed int _int32_t;
typedef unsigned int _uint32_t;
typedef signed long _int32_t;
typedef unsigned long _uint32_t;
typedef signed long long _int64_t;
typedef unsigned long long _uint64_t;