From 12e09f9f85ac48ff891adf92f3b2c9a5fea27273 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sat, 4 Dec 2021 14:10:21 -0800 Subject: Chore(REMOVE): finished deprecation of old io functions. The old methods were simple wrappers of C standard library functions. We've moved (painfully) over to a new interface that allows for files to live on the stack. All users of the functionality are ported over. --- src/base/bufio/ungetc.c | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 src/base/bufio/ungetc.c (limited to 'src/base/bufio/ungetc.c') diff --git a/src/base/bufio/ungetc.c b/src/base/bufio/ungetc.c deleted file mode 100644 index 70abbab..0000000 --- a/src/base/bufio/ungetc.c +++ /dev/null @@ -1,13 +0,0 @@ -#include "internal.h" - -int -bio·ungetc(io·Header *io) -{ - if(io->state == io·BufEnd) - io->state = io·BufRdr; - if(io->state != io·BufRdr) - return io·BufEof; - - io->ilen--; - return 0; -} -- cgit v1.2.1