aboutsummaryrefslogtreecommitdiff
path: root/src/stdio/vprintf.c
blob: 3b9a58020d3aa3380e33ca3fbcc68237ee686039 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>

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


#ifdef TEST
int
main(void) {
	return 0;
}
#endif