diff options
Diffstat (limited to 'newlib/libc/stdio/fscanf.c')
-rw-r--r-- | newlib/libc/stdio/fscanf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio/fscanf.c b/newlib/libc/stdio/fscanf.c index 87b51dd..40705a5 100644 --- a/newlib/libc/stdio/fscanf.c +++ b/newlib/libc/stdio/fscanf.c @@ -29,7 +29,7 @@ int #ifdef _HAVE_STDC -fscanf(FILE *__restrict fp, _CONST char *__restrict fmt, ...) +fscanf(FILE *__restrict fp, const char *__restrict fmt, ...) #else fscanf(FILE *fp, fmt, va_alist) FILE *fp; @@ -60,7 +60,7 @@ _EXFUN(fiscanf, (FILE *, const char *, ...) int #ifdef _HAVE_STDC -_fscanf_r(struct _reent *ptr, FILE *__restrict fp, _CONST char *__restrict fmt, ...) +_fscanf_r(struct _reent *ptr, FILE *__restrict fp, const char *__restrict fmt, ...) #else _fscanf_r(ptr, FILE *fp, fmt, va_alist) struct _reent *ptr; |