musl-tcc/src/stdio/fgetc.c

8 lines
81 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include <stdio.h>
#include "getc.h"
int fgetc(FILE *f)
{
return do_getc(f);
}