summaryrefslogtreecommitdiff
path: root/src/stdio/putwc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/putwc.c')
-rw-r--r--src/stdio/putwc.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/stdio/putwc.c b/src/stdio/putwc.c
new file mode 100644
index 00000000..80b54a47
--- /dev/null
+++ b/src/stdio/putwc.c
@@ -0,0 +1,6 @@
+#include "stdio_impl.h"
+
+wint_t putwc(wchar_t c, FILE *f)
+{
+ return fputwc(c, f);
+}