commit 56b897157c311dd260feb836e2498daef478a538
parent ab4fa591f932d673556020c78fb4104f5b11f256
Author: Sebastian <sebastian@sebsite.pw>
Date: Sat, 4 Feb 2023 00:51:03 -0500
net::unix: fix imports
Signed-off-by: Sebastian <sebastian@sebsite.pw>
Diffstat:
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/net/unix/socketpair.ha b/net/unix/socketpair.ha
@@ -1,11 +1,10 @@
// License: MPL-2.0
// (c) 2021 Ember Sawady <ecs@d2evs.net>
// (c) 2021 Thomas Bracht Laumann Jespersen <t@laumann.xyz>
-use rt;
-use io;
-use net;
use errors;
use io;
+use net;
+use rt;
// A thin wrapper around socketpair(2) that presumes [[rt::AF_UNIX]] for the
// domain and returns an unnamed pair of sockets of type [[rt::SOCK_STREAM]].