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

int vwprintf(const wchar_t *restrict fmt, va_list ap)
{
	return vfwprintf(stdout, fmt, ap);
}


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