aboutsummaryrefslogtreecommitdiff
path: root/src/base/bufio/unget.c
diff options
context:
space:
mode:
authorNicholas <nbnoll@eml.cc>2021-11-20 11:55:55 -0800
committerNicholas <nbnoll@eml.cc>2021-11-20 12:34:01 -0800
commite97c8c469db0aa27985dab2879dc1f14905c7387 (patch)
treef10f7ed68f1ad5212eebb0985ef040c5e96235ba /src/base/bufio/unget.c
parenta9bfe650038afea8b751175cac16f6027345e45f (diff)
chore: simplify makefiles
Diffstat (limited to 'src/base/bufio/unget.c')
-rw-r--r--src/base/bufio/unget.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/base/bufio/unget.c b/src/base/bufio/unget.c
deleted file mode 100644
index 1951384..0000000
--- a/src/base/bufio/unget.c
+++ /dev/null
@@ -1,18 +0,0 @@
-#include "internal.h"
-
-int
-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;
-}