diff options
Diffstat (limited to 'newlib/libc/stdio/sscanf.c')
-rw-r--r-- | newlib/libc/stdio/sscanf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/stdio/sscanf.c b/newlib/libc/stdio/sscanf.c index d2d9dfe..bfec067 100644 --- a/newlib/libc/stdio/sscanf.c +++ b/newlib/libc/stdio/sscanf.c @@ -427,7 +427,7 @@ Supporting OS subroutines required: <<close>>, <<fstat>>, <<isatty>>, #ifdef _HAVE_STDC int _DEFUN(sscanf, (str, fmt), - _CONST char *__restrict str _AND + _CONST char *__restrict str, _CONST char * fmt _DOTS) #else int @@ -469,8 +469,8 @@ _EXFUN(siscanf, (const char *, const char *, ...) #ifdef _HAVE_STDC int _DEFUN(_sscanf_r, (ptr, str, fmt), - struct _reent *ptr _AND - _CONST char *__restrict str _AND + struct _reent *ptr, + _CONST char *__restrict str, _CONST char *__restrict fmt _DOTS) #else int |