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

10 lines
109 B
C

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