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

[incubator-nuttx] 13/34: intel64: 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 a462644e32c84aa765b8e51e6495678d9df982d6
Author: YAMAMOTO Takashi <ya...@midokura.com>
AuthorDate: Wed Nov 18 13:57:09 2020 +0900

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

diff --git a/arch/x86_64/include/intel64/types.h b/arch/x86_64/include/intel64/types.h
index d51cb94..aca6a76 100644
--- a/arch/x86_64/include/intel64/types.h
+++ b/arch/x86_64/include/intel64/types.h
@@ -62,6 +62,9 @@ typedef signed long        _int64_t;
 typedef unsigned long      _uint64_t;
 #define __INT64_DEFINED
 
+typedef _int64_t           _intmax_t;
+typedef _uint64_t          _uintmax_t;
+
 /* A pointer is 8 bytes */
 
 typedef signed long long         _intptr_t;