musl-tcc/src/stdio/fgetc.c
2022-03-20 16:48:53 +08:00

8 lines
81 B
C

#include <stdio.h>
#include "getc.h"
int fgetc(FILE *f)
{
return do_getc(f);
}