aboutsummaryrefslogtreecommitdiff
path: root/include/lib
diff options
context:
space:
mode:
authorChristian C <cc@localhost>2025-03-08 00:34:41 -0800
committerChristian C <cc@localhost>2025-03-08 00:34:41 -0800
commit8e1541680d15a5489089bbe367892797fa59c8f2 (patch)
treed57b0b8eb7bbfb0ddeb825b4352cba1ced1d5567 /include/lib
parentcf82fccd175e7276e97434985b345b4fcc6229ce (diff)
Fix missing dependency
Wasn't caught before as all usages include this anyway
Diffstat (limited to 'include/lib')
-rw-r--r--include/lib/monad.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/lib/monad.h b/include/lib/monad.h
index 4a68e0a..74db079 100644
--- a/include/lib/monad.h
+++ b/include/lib/monad.h
@@ -1,6 +1,8 @@
#ifndef INC_LIB_MONAD_H
#define INC_LIB_MONAD_H
+#include <lib/bool.h>
+
struct Result {
void* data;
bool_t success;