projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
work around constant folding bug 61144 in gcc 4.9.0 and 4.9.1
[oweals/musl.git]
/
src
/
stdio
/
vwprintf.c
1
#include <stdio.h>
2
#include <wchar.h>
3
4
int vwprintf(const wchar_t *restrict fmt, va_list ap)
5
{
6
return vfwprintf(stdout, fmt, ap);
7
}