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:11 UTC

[incubator-nuttx] 06/34: arm: 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 03c332acf0926ec0311d19b2d324063ce84f7e0a
Author: YAMAMOTO Takashi <ya...@midokura.com>
AuthorDate: Wed Nov 18 13:45:27 2020 +0900

    arm: Add _intmax_t and _uintmax_t
---
 arch/arm/include/types.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/arch/arm/include/types.h b/arch/arm/include/types.h
index 86fffc1..f651da4 100644
--- a/arch/arm/include/types.h
+++ b/arch/arm/include/types.h
@@ -63,6 +63,9 @@ typedef signed long long   _int64_t;
 typedef unsigned long long _uint64_t;
 #define __INT64_DEFINED
 
+typedef _int64_t           _intmax_t;
+typedef _uint64_t          _uintmax_t;
+
 /* A size is 4 bytes */
 
 #if defined(__SIZE_TYPE__)