Files

13 lines
185 B
C
Raw Permalink Normal View History

2020-07-16 14:02:51 +01:00
#include <stdio.h>
#include <__fio.h>
int ungetc(int c, FILE *fp)
{
if (c == EOF) {
return EOF;
}
2020-07-16 14:02:51 +01:00
int res = __fio_ungetc(fp, c);
return res == -1 ? EOF : c;
}