summaryrefslogtreecommitdiff
path: root/src/wchar/wprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wchar/wprintf.c')
-rw-r--r--src/wchar/wprintf.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/wchar/wprintf.c b/src/wchar/wprintf.c
new file mode 100644
index 00000000..9394e785
--- /dev/null
+++ b/src/wchar/wprintf.c
@@ -0,0 +1,15 @@
+#include <wchar.h>
+#include "stdarg.h"
+
+int wprintf(const wchar_t * restrict format, ...)
+{
+ va_list ap;
+ va_start(ap, format);
+ int ret = vwprintf(format, ap);
+ va_end(ap);
+ return ret;
+}
+
+/*
+STDC(199409)
+*/