1#include <stdio.h>
2
3int vprintf(const char* restrict fmt, va_list ap) {
4    return vfprintf(stdout, fmt, ap);
5}
6