From 22c32ae8649e8540198942b33d4bab72c4ea7238 Mon Sep 17 00:00:00 2001 From: Christian C Date: Sun, 23 Mar 2025 15:34:48 -0700 Subject: Userspace types --- include/lib/monad.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/lib/monad.h') diff --git a/include/lib/monad.h b/include/lib/monad.h index 74db079..af5eb3a 100644 --- a/include/lib/monad.h +++ b/include/lib/monad.h @@ -3,9 +3,9 @@ #include -struct Result { +typedef struct Result { void* data; bool_t success; -}; +} Result; #endif -- cgit v1.2.1