You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2020/11/19 08:50:30 UTC

[incubator-nuttx] 25/34: z16: Add _intmax_t and _uintmax_t

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit 27352716fd68ca1890fb020d0694ee59306d3b10
Author: YAMAMOTO Takashi <ya...@midokura.com>
AuthorDate: Tue Nov 17 09:00:40 2020 +0900

    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 e1e7f3a..e9a6eaa 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__)