diff options
Diffstat (limited to 'newlib/libc/stdio/vscanf.c')
-rw-r--r-- | newlib/libc/stdio/vscanf.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/stdio/vscanf.c b/newlib/libc/stdio/vscanf.c index 260359a..be329de 100644 --- a/newlib/libc/stdio/vscanf.c +++ b/newlib/libc/stdio/vscanf.c @@ -30,8 +30,7 @@ #ifndef _REENT_ONLY int -_DEFUN(vscanf, (fmt, ap), - const char *fmt, +vscanf (const char *fmt, va_list ap) { struct _reent *reent = _REENT; @@ -48,8 +47,7 @@ _EXFUN(viscanf, (const char *, __VALIST) _ATTRIBUTE ((__alias__("vscanf")))); #endif /* !_REENT_ONLY */ int -_DEFUN(_vscanf_r, (ptr, fmt, ap), - struct _reent *ptr, +_vscanf_r (struct _reent *ptr, const char *__restrict fmt, va_list ap) { |