X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fstdio%2Fvfwprintf.c;h=eb0793121ed1b5d8a0e089a24188ffdaf000f3c0;hp=62829806b10386a908296b3bef602bc49ac50f15;hb=HEAD;hpb=db4096c5f2ffb15e52015004ab5a900b820c6683 diff --git a/src/stdio/vfwprintf.c b/src/stdio/vfwprintf.c index 62829806..eb079312 100644 --- a/src/stdio/vfwprintf.c +++ b/src/stdio/vfwprintf.c @@ -1,4 +1,11 @@ #include "stdio_impl.h" +#include +#include +#include +#include +#include +#include +#include /* Convenient bit representation for modifier flags, which all fall * within 31 codepoints of the space character. */ @@ -336,7 +343,7 @@ static int wprintf_core(FILE *f, const wchar_t *fmt, va_list *ap, union arg *nl_ return 1; } -int vfwprintf(FILE *f, const wchar_t *fmt, va_list ap) +int vfwprintf(FILE *restrict f, const wchar_t *restrict fmt, va_list ap) { va_list ap2; int nl_type[NL_ARGMAX] = {0};