aboutsummaryrefslogtreecommitdiff
path: root/src/base/io/unget.c
blob: 5c374332764969f5fb5f5b6ba1b2ce01370cc4cd (plain)
1
2
3
4
5
6
7
#include "internal.h"

int
io·ungetbyte(io·Stream *s, byte c)
{
    return ungetc(c, s);
}