add portable lchown (trivial to support and a few ancient things want it..)
[musl] / src / stdio / getc.c
1 #include "stdio_impl.h"
2
3 int getc(FILE *f)
4 {
5         return fgetc(f);
6 }