zig/libc/musl/src/stdio/wprintf.c
Andrew Kelley 62486c35a4
ability to build musl from source
bundles musl 1.1.21

See #514
2019-03-12 17:32:32 -04:00

14 lines
204 B
C

#include <stdio.h>
#include <stdarg.h>
#include <wchar.h>
int wprintf(const wchar_t *restrict fmt, ...)
{
int ret;
va_list ap;
va_start(ap, fmt);
ret = vwprintf(fmt, ap);
va_end(ap);
return ret;
}