aboutsummaryrefslogtreecommitdiffstats
path: root/nihil.posix/spawn.ccm
diff options
context:
space:
mode:
authorLexi Winter <lexi@le-fay.org>2025-07-02 03:25:28 +0100
committerLexi Winter <lexi@le-fay.org>2025-07-02 03:25:28 +0100
commita4607e29540a9352c35afff17193ceeab137cc9d (patch)
tree0e9c2ea9c94f17b81f222fd6ebf1ccd75bb1f7f8 /nihil.posix/spawn.ccm
parentbde0492644845de63cf95b8997c5e613a9247826 (diff)
downloadnihil-a4607e29540a9352c35afff17193ceeab137cc9d.tar.gz
nihil-a4607e29540a9352c35afff17193ceeab137cc9d.tar.bz2
move monad to util
Diffstat (limited to 'nihil.posix/spawn.ccm')
-rw-r--r--nihil.posix/spawn.ccm3
1 files changed, 2 insertions, 1 deletions
diff --git a/nihil.posix/spawn.ccm b/nihil.posix/spawn.ccm
index 1e4102a..ea84f4d 100644
--- a/nihil.posix/spawn.ccm
+++ b/nihil.posix/spawn.ccm
@@ -3,7 +3,8 @@ export module nihil.posix:spawn;
// spawn(): fork and execute a child process.
-import nihil.monad;
+import nihil.std;
+import nihil.util;
import :argv;
import :executor;
import :fd;