Files

5 lines
111 B
C
Raw Permalink Normal View History

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