commit cef3435935b046fde93f3d51aed867547103a60b
parent c3c36319383f1ff85789bc494cf328bea5e38630
Author: Drew DeVault <sir@cmpwn.com>
Date: Mon, 22 Nov 2021 10:11:11 +0100
os::exec::addfile: remove TODO
Let's not do this. Too high-level for Hare's design.
Signed-off-by: Drew DeVault <sir@cmpwn.com>
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/os/exec/cmd.ha b/os/exec/cmd.ha
@@ -140,7 +140,6 @@ export fn addfile(
from: (io::file | nullfd | closefd),
to: io::file,
) void = {
- // TODO: Can we make 'to' be an io::handle?
append(cmd.files, (from, to));
};