commit f0c4a829872de88e71ac2d58579adfaf3b864f65
parent bc7096ce501314baeee68f236284a5b215fc298d
Author: Bor Grošelj Simić <bor.groseljsimic@telemach.net>
Date: Sun, 28 Nov 2021 23:58:11 +0100
import io where needed
Signed-off-by: Bor Grošelj Simić <bor.groseljsimic@telemach.net>
Diffstat:
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/net/dial/ip.ha b/net/dial/ip.ha
@@ -1,4 +1,5 @@
// Provides default dialers for tcp and udp
+use io;
use net;
use net::ip;
use net::tcp;
diff --git a/net/errors.ha b/net/errors.ha
@@ -1,4 +1,5 @@
use errors;
+use io;
// An attempt was made to use an unsupported protocol.
export type unknownproto = !void;