From 09cdff694ae707995403cbcbf8041d174b5c3dba Mon Sep 17 00:00:00 2001 From: Tormod Volden Date: Sun, 1 Feb 2015 20:59:53 +0100 Subject: [PATCH] 6809: Add uarg_t Signed-off-by: Tormod Volden --- Kernel/cpu-6809/cpu.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Kernel/cpu-6809/cpu.h b/Kernel/cpu-6809/cpu.h index 92be5fa4..f8462479 100644 --- a/Kernel/cpu-6809/cpu.h +++ b/Kernel/cpu-6809/cpu.h @@ -9,6 +9,7 @@ typedef signed int size_t; typedef uint8_t irqflags_t; typedef int16_t arg_t; +typedef uint16_t uarg_t; /* Holds arguments */ typedef uint16_t usize_t; /* Largest value passed by userspace */ typedef int16_t susize_t; typedef uint16_t uaddr_t; /* A user address must fit this */ -- 2.34.1