X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Fvprintf.c;h=30d2bffa8821879fc28abac6cc3806b5788366ee;hb=400c5e5c8307a2ebe44ef1f203f5a15669f20347;hp=67b38dacb882a1fdab15cd75edc9920bc6acd026;hpb=bac03cdde1137c16b4c194e137310e2748661dcc;p=musl diff --git a/src/stdio/vprintf.c b/src/stdio/vprintf.c index 67b38dac..30d2bffa 100644 --- a/src/stdio/vprintf.c +++ b/src/stdio/vprintf.c @@ -1,6 +1,6 @@ #include -int vprintf(const char *fmt, va_list ap) +int vprintf(const char *restrict fmt, va_list ap) { return vfprintf(stdout, fmt, ap); }