aboutsummaryrefslogtreecommitdiff
path: root/core/os/os2/pipe.odin
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-04-14 19:39:12 +0100
committergingerBill <bill@gingerbill.org>2021-04-14 19:39:12 +0100
commitebbc33fdb5e044e5feb010d6d3a8bde41f71a05f (patch)
tree29ccc30a22ef8082df00eb3f2dbcfb9ee73e789f /core/os/os2/pipe.odin
parent3a4373641b68019149007f04a201965ee961f74e (diff)
Mockup of the new `package os` interface (incomplete and non-functioning)
Diffstat (limited to 'core/os/os2/pipe.odin')
-rw-r--r--core/os/os2/pipe.odin5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/os/os2/pipe.odin b/core/os/os2/pipe.odin
new file mode 100644
index 000000000..8bb46b303
--- /dev/null
+++ b/core/os/os2/pipe.odin
@@ -0,0 +1,5 @@
+package os2
+
+pipe :: proc() -> (r, w: Handle, err: Error) {
+ return _pipe();
+}