diff options
Diffstat (limited to 'src/stdio/putwc.c')
-rw-r--r-- | src/stdio/putwc.c | 6 |
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); +} |