From ce05175372a9ddca1a225db0765ace1127a39293 Mon Sep 17 00:00:00 2001 From: Nicholas Date: Fri, 12 Nov 2021 09:22:01 -0800 Subject: chore: simplified organizational structure --- sys/base/bufio/unget.c | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 sys/base/bufio/unget.c (limited to 'sys/base/bufio/unget.c') diff --git a/sys/base/bufio/unget.c b/sys/base/bufio/unget.c deleted file mode 100644 index 3fd16de..0000000 --- a/sys/base/bufio/unget.c +++ /dev/null @@ -1,18 +0,0 @@ -#include "internal.h" - -error -bufio·ungetbyte(io·Buffer *buf, byte c) -{ - if(!(buf->state & bufio·rdr)) { - errorf("attempted to unget on non-active reader"); - return bufio·err; - } - - if(buf->pos == buf->buf) { - errorf("attempted to unget past end of buffer"); - return bufio·err; - } - - buf->pos--; - return 0; -} -- cgit v1.2.1