From d576893bdaffe858501fcf6b9f3e335d3d1c5273 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 10 Jan 2013 17:58:17 +0100 Subject: [PATCH] software/include/base/stdint.h: add INT32_C --- software/include/base/stdint.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/software/include/base/stdint.h b/software/include/base/stdint.h index 029aeb29b..89f8af386 100644 --- a/software/include/base/stdint.h +++ b/software/include/base/stdint.h @@ -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 */