From ba698efb37e4b44b0788b61b810be67bbef300c2 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Tue, 20 Oct 2015 09:33:32 +0100 Subject: [PATCH] z80: add size_t / ssize_t as we now need them --- Kernel/cpu-z80/cpu.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Kernel/cpu-z80/cpu.h b/Kernel/cpu-z80/cpu.h index 9a1e12da..9e5fe12a 100644 --- a/Kernel/cpu-z80/cpu.h +++ b/Kernel/cpu-z80/cpu.h @@ -5,6 +5,9 @@ typedef signed short int16_t; typedef unsigned char uint8_t; typedef signed char int8_t; +typedef uint16_t size_t; +typedef int16_t ssize_t; + typedef int16_t arg_t; /* Holds arguments */ typedef uint16_t uarg_t; /* Holds arguments */ typedef uint16_t usize_t; /* Largest value passed by userspace */ -- 2.34.1