X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Fvsprintf.c;h=c57349d4d888d532b39a15d525d248b0eee3c48d;hb=400c5e5c8307a2ebe44ef1f203f5a15669f20347;hp=7836ccb26f088cd85dbbe82092cdad0fcf29106b;hpb=bac03cdde1137c16b4c194e137310e2748661dcc;p=musl diff --git a/src/stdio/vsprintf.c b/src/stdio/vsprintf.c index 7836ccb2..c57349d4 100644 --- a/src/stdio/vsprintf.c +++ b/src/stdio/vsprintf.c @@ -1,7 +1,7 @@ #include #include -int vsprintf(char *s, const char *fmt, va_list ap) +int vsprintf(char *restrict s, const char *restrict fmt, va_list ap) { return vsnprintf(s, INT_MAX, fmt, ap); }