ref: 3c6c5a02710e4d7a3da6121e9bfb8d2bc0d786dd
dir: /src/libc/stdio/vprintf.c/
#include <stdarg.h>
#include <stdio.h>
#undef vprintf
int
vprintf(const char *restrict fmt, va_list ap)
{
va_list ap2;
va_copy(ap2, ap);
return vfprintf(stdout, fmt, ap2);
}