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

[incubator-nuttx] 22/34: z8: 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 be94340adb33323a127f0c86c367a106dc2f0e96
Author: YAMAMOTO Takashi <ya...@midokura.com>
AuthorDate: Tue Nov 17 09:01:54 2020 +0900

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

diff --git a/arch/z80/include/z8/types.h b/arch/z80/include/z8/types.h
index 4f84676..d620f5f 100644
--- a/arch/z80/include/z8/types.h
+++ b/arch/z80/include/z8/types.h
@@ -88,6 +88,9 @@ typedef unsigned int       _uint16_t;
 typedef signed long        _int32_t;
 typedef unsigned long      _uint32_t;
 
+typedef _int32_t           _intmax_t;
+typedef _uint32_t          _uintmax_t;
+
 /* A size is 2 bytes */
 
 #if defined(__SIZE_TYPE__)