aboutsummaryrefslogtreecommitdiffstats
path: root/io/wprinf.c
blob: f441edae8d077bdbbfd3c020d1494ba3096fd11d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include "io.h"

int wprintf(wchar_t const *restrict format, ...)
{
	va_list arg;
	va_start(arg, format);
	int lenght = vwprintf(format, arg);
	va_end(arg);
	return lenght;
}