musl-tcc/src/stdio/fgetc.c

8 lines
81 B
C
Raw Normal View History

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