aboutsummaryrefslogtreecommitdiff
path: root/sys/base/bufio/unget.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/base/bufio/unget.c')
-rw-r--r--sys/base/bufio/unget.c18
1 files changed, 0 insertions, 18 deletions
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;
-}