software/include/base/stdint.h: add INT32_C

This commit is contained in:
Sebastien Bourdeauducq 2013-01-10 17:58:17 +01:00
parent c5c29199be
commit d576893bda
1 changed files with 2 additions and 0 deletions

View File

@ -19,5 +19,7 @@ typedef char int8_t;
#define INT64_C(v) __int_c(v, LL)
#define UINT64_C(v) __uint_c(v, LL)
#define INT32_C(v) v
#define UINT32_C(v) v##U
#endif /* __STDINT_H */