diff options
Diffstat (limited to 'newlib/libc/stdio/vsiscanf.c')
-rw-r--r-- | newlib/libc/stdio/vsiscanf.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/stdio/vsiscanf.c b/newlib/libc/stdio/vsiscanf.c index 6ad0f4a..5679df0 100644 --- a/newlib/libc/stdio/vsiscanf.c +++ b/newlib/libc/stdio/vsiscanf.c @@ -35,8 +35,7 @@ #ifndef _REENT_ONLY int -_DEFUN(vsiscanf, (str, fmt, ap), - const char *str, +vsiscanf (const char *str, const char *fmt, va_list ap) { @@ -46,8 +45,7 @@ _DEFUN(vsiscanf, (str, fmt, ap), #endif /* !_REENT_ONLY */ int -_DEFUN(_vsiscanf_r, (ptr, str, fmt, ap), - struct _reent *ptr, +_vsiscanf_r (struct _reent *ptr, const char *str, const char *fmt, va_list ap) |