From: Alan Cox Date: Tue, 20 Oct 2015 08:33:32 +0000 (+0100) Subject: z80: add size_t / ssize_t as we now need them X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=ba698efb37e4b44b0788b61b810be67bbef300c2;p=FUZIX.git z80: add size_t / ssize_t as we now need them --- 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 */