1 /* 2 * pANS stdio -- vprintf 3 */ 4 #include "iolib.h" 5 int vprintf(const char *fmt, va_list args){ 6 return vfprintf(stdout, fmt, args); 7 } 8