diff options
Diffstat (limited to 'src/stdio/sprintf.c')
-rw-r--r-- | src/stdio/sprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdio/sprintf.c b/src/stdio/sprintf.c index 6b225409..9dff524c 100644 --- a/src/stdio/sprintf.c +++ b/src/stdio/sprintf.c @@ -1,7 +1,7 @@ #include <stdio.h> #include <stdarg.h> -int sprintf(char *s, const char *fmt, ...) +int sprintf(char *restrict s, const char *restrict fmt, ...) { int ret; va_list ap; |