diff options
author | Christian C <cc@localhost> | 2025-03-23 15:34:48 -0700 |
---|---|---|
committer | Christian C <cc@localhost> | 2025-03-23 15:34:48 -0700 |
commit | 22c32ae8649e8540198942b33d4bab72c4ea7238 (patch) | |
tree | 946e173c4ab362ec88f21854e8613a21c330a6e1 /include/lib/monad.h | |
parent | 981e8bfd12f79cb469bb54a915230eda6dafab41 (diff) |
Userspace types
Diffstat (limited to 'include/lib/monad.h')
-rw-r--r-- | include/lib/monad.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 <lib/bool.h> -struct Result { +typedef struct Result { void* data; bool_t success; -}; +} Result; #endif |