rename __simple_malloc.c to lite_malloc.c - yes this affects behavior!
[musl] / src / stdio / getwc.c
1 #include "stdio_impl.h"
2
3 wint_t getwc(FILE *f)
4 {
5         return fgetwc(f);
6 }