syslog: revert LOG_FAC/LOG_FACMASK changes
[musl.git] / src / stdio / vwprintf.c
blobeeeecdc7c62ae1508d135eeb5e52095550cbb0f6
1 #include <stdio.h>
2 #include <wchar.h>
4 int vwprintf(const wchar_t *restrict fmt, va_list ap)
6 return vfwprintf(stdout, fmt, ap);