From 27352716fd68ca1890fb020d0694ee59306d3b10 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Tue, 17 Nov 2020 09:00:40 +0900 Subject: [PATCH] z16: Add _intmax_t and _uintmax_t --- arch/z16/include/types.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/z16/include/types.h b/arch/z16/include/types.h index e1e7f3ab9c..e9a6eaa4a0 100644 --- a/arch/z16/include/types.h +++ b/arch/z16/include/types.h @@ -72,6 +72,9 @@ typedef unsigned short _uint16_t; typedef signed int _int32_t; typedef unsigned int _uint32_t; +typedef _int32_t _intmax_t; +typedef _uint32_t _uintmax_t; + /* A size is 4 bytes */ #if defined(__SIZE_TYPE__)