about summary refs log tree commit diff
path: root/src/stdio/wprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/wprintf.c')
-rw-r--r--src/stdio/wprintf.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/stdio/wprintf.c b/src/stdio/wprintf.c
new file mode 100644
index 00000000..20ca61a0
--- /dev/null
+++ b/src/stdio/wprintf.c
@@ -0,0 +1,13 @@
+#include <stdio.h>
+#include <stdarg.h>
+#include <wchar.h>
+
+int wprintf(const wchar_t *fmt, ...)
+{
+	int ret;
+	va_list ap;
+	va_start(ap, fmt);
+	ret = vwprintf(fmt, ap);
+	va_end(ap);
+	return ret;
+}