musl-tcc/src/stdio/getc.c

10 lines
109 B
C
Raw Normal View History

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