diff options
Diffstat (limited to 'newlib/libc/stdio/scanf.c')
-rw-r--r-- | newlib/libc/stdio/scanf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio/scanf.c b/newlib/libc/stdio/scanf.c index 19c85be..84992a5 100644 --- a/newlib/libc/stdio/scanf.c +++ b/newlib/libc/stdio/scanf.c @@ -29,7 +29,7 @@ int #ifdef _HAVE_STDC -scanf(_CONST char *fmt, ...) +scanf(_CONST char *__restrict fmt, ...) #else scanf(fmt, va_alist) char *fmt; @@ -55,7 +55,7 @@ scanf(fmt, va_alist) int #ifdef _HAVE_STDC -_scanf_r(struct _reent *ptr, _CONST char *fmt, ...) +_scanf_r(struct _reent *ptr, _CONST char *__restrict fmt, ...) #else _scanf_r(ptr, fmt, va_alist) struct _reent *ptr; |