From 8e1541680d15a5489089bbe367892797fa59c8f2 Mon Sep 17 00:00:00 2001
From: Christian C <cc@localhost>
Date: Sat, 8 Mar 2025 00:34:41 -0800
Subject: Fix missing dependency

Wasn't caught before as all usages include this anyway
---
 include/lib/monad.h | 2 ++
 1 file changed, 2 insertions(+)

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;
-- 
cgit v1.2.1