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