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

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