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