From 7ea7654db6e827038e38c3589c8d5b314db3fcb2 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Mon, 18 May 2020 20:28:51 -0700 Subject: fix: line accounting is less buggy --- sys/libn/io.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'sys/libn/io.c') 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) { -- cgit v1.2.1