blob: 30d2bffa8821879fc28abac6cc3806b5788366ee [file] [log] [blame]
Rich Felker0b44a032011-02-12 00:22:29 -05001#include <stdio.h>
2
Rich Felker400c5e52012-09-06 22:44:55 -04003int vprintf(const char *restrict fmt, va_list ap)
Rich Felker0b44a032011-02-12 00:22:29 -05004{
5 return vfprintf(stdout, fmt, ap);
6}