rename __simple_malloc.c to lite_malloc.c - yes this affects behavior!
[musl] / src / stdio / vprintf.c
1 #include <stdio.h>
2
3 int vprintf(const char *fmt, va_list ap)
4 {
5         return vfprintf(stdout, fmt, ap);
6 }