summaryrefslogtreecommitdiff
path: root/src/stdio/vprintf.c
blob: 67b38dacb882a1fdab15cd75edc9920bc6acd026 (plain) (blame)
1
2
3
4
5
6
#include <stdio.h>

int vprintf(const char *fmt, va_list ap)
{
	return vfprintf(stdout, fmt, ap);
}