aboutsummaryrefslogtreecommitdiff
path: root/sys/libn/io.c
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2020-05-18 20:28:51 -0700
committerNicholas Noll <nbnoll@eml.cc>2020-05-18 20:28:51 -0700
commit7ea7654db6e827038e38c3589c8d5b314db3fcb2 (patch)
treeb9b28558b6aee70c57bd2ff14ea10896c4840b29 /sys/libn/io.c
parent73c04db73163d1d2719bb97a6b8c133065df75c3 (diff)
fix: line accounting is less buggy
Diffstat (limited to 'sys/libn/io.c')
-rw-r--r--sys/libn/io.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/sys/libn/io.c b/sys/libn/io.c
index 08c29b0..3827a82 100644
--- a/sys/libn/io.c
+++ b/sys/libn/io.c
@@ -22,12 +22,6 @@ io·stat(Stream *s, io·Stat *buf)
return fstat(fileno(s), buf);
}
-int
-io·exists(byte *path, int flag)
-{
- return access(path, flag) == 0;
-}
-
error
io·close(Stream *s)
{