diff options
Diffstat (limited to 'src/wchar/fwprintf.c')
| -rw-r--r-- | src/wchar/fwprintf.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/wchar/fwprintf.c b/src/wchar/fwprintf.c new file mode 100644 index 00000000..540405f9 --- /dev/null +++ b/src/wchar/fwprintf.c @@ -0,0 +1,16 @@ +#include <wchar.h> +#include "stdio.h" +#include "stdarg.h" + +int fwprintf(FILE * restrict stream, const wchar_t * restrict format, ...) +{ + va_list ap; + va_start(ap, format); + int ret = vfwprintf(stream, format, ap); + va_end(ap); + return ret; +} + +/* +STDC(199409) +*/ |
