diff options
Diffstat (limited to 'src/stdio/vsprintf.c')
-rw-r--r-- | src/stdio/vsprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 <stdio.h> #include <limits.h> -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); } |