author | Rich Felker <dalias@aerifal.cx> | 2011年03月17日 22:55:43 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011年03月17日 22:55:43 -0400 |
commit | c35bb6645f32bc684dc3da99d4d71c4ead2d4717 (patch) | |
tree | b0984f88eee7060f73d77eb21d2d3e75b3e2e233 /src/stdio/vwprintf.c | |
parent | a012aa879fb790c8e0446638b206b7f34e92c51e (diff) | |
download | musl-c35bb6645f32bc684dc3da99d4d71c4ead2d4717.tar.gz |
-rw-r--r-- | src/stdio/vwprintf.c | 7 |
diff --git a/src/stdio/vwprintf.c b/src/stdio/vwprintf.c new file mode 100644 index 00000000..c1923e62 --- /dev/null +++ b/src/stdio/vwprintf.c @@ -0,0 +1,7 @@ +#include <stdio.h> +#include <wchar.h> + +int vwprintf(const wchar_t *fmt, va_list ap) +{ + return vfwprintf(stdout, fmt, ap); +} |