musl-tcc/src/stdio/fgetc.c

8 lines
81 B
C

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