Skip to content
Snippets Groups Projects
Commit d74a21e8 authored by Yaowu Xu's avatar Yaowu Xu Committed by Yaowu Xu
Browse files

Remove i32 suffix

Change-Id: Id277fbfa7cafdd89ad91e67170d9c75fa9416d46
parent 4e510826
No related branches found
No related tags found
2 merge requests!6Rav1e 11 yushin 1,!3Rav1e 10 yushin
......@@ -66,11 +66,11 @@ typedef size_t uintptr_t;
#endif
#if !defined(INT32_MAX)
#define INT32_MAX 2147483647i32
#define INT32_MAX 2147483647
#endif
#if !defined(INT32_MIN)
#define INT32_MIN (-2147483647i32 - 1)
#define INT32_MIN (-2147483648)
#endif
#define NELEMENTS(x) (int)(sizeof(x) / sizeof(x[0]))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment