From 8a54cca442a89f4a0f2390fadc9e50621c98ed96 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Tue, 17 Nov 2020 09:03:21 +0900 Subject: [PATCH] ez80: Add _intmax_t and _uintmax_t --- arch/z80/include/ez80/types.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/z80/include/ez80/types.h b/arch/z80/include/ez80/types.h index edfd6f1297..6db23df3eb 100644 --- a/arch/z80/include/ez80/types.h +++ b/arch/z80/include/ez80/types.h @@ -84,6 +84,9 @@ typedef unsigned int _uint24_t; typedef signed long _int32_t; typedef unsigned long _uint32_t; +typedef _int32_t _intmax_t; +typedef _uint32_t _uintmax_t; + /* A pointer is 2 or 3 bytes, depending upon if the ez80 is in z80 * compatibility mode or not *