| Index: fusl/src/stdio/wprintf.c
|
| diff --git a/fusl/src/stdio/wprintf.c b/fusl/src/stdio/wprintf.c
|
| index 342cd97911d365e4f787a95280b1ae7a9c631df3..7872aa8877a3ada9d5dae4eb57c8c2092a16897e 100644
|
| --- a/fusl/src/stdio/wprintf.c
|
| +++ b/fusl/src/stdio/wprintf.c
|
| @@ -2,12 +2,11 @@
|
| #include <stdarg.h>
|
| #include <wchar.h>
|
|
|
| -int wprintf(const wchar_t *restrict fmt, ...)
|
| -{
|
| - int ret;
|
| - va_list ap;
|
| - va_start(ap, fmt);
|
| - ret = vwprintf(fmt, ap);
|
| - va_end(ap);
|
| - return ret;
|
| +int wprintf(const wchar_t* restrict fmt, ...) {
|
| + int ret;
|
| + va_list ap;
|
| + va_start(ap, fmt);
|
| + ret = vwprintf(fmt, ap);
|
| + va_end(ap);
|
| + return ret;
|
| }
|
|
|