summaryrefslogtreecommitdiffstats
path: root/newlib/libc/stdio/fscanf.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdio/fscanf.c')
-rw-r--r--newlib/libc/stdio/fscanf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio/fscanf.c b/newlib/libc/stdio/fscanf.c
index c00a4690e..afbc2f0e8 100644
--- a/newlib/libc/stdio/fscanf.c
+++ b/newlib/libc/stdio/fscanf.c
@@ -45,7 +45,7 @@ fscanf(FILE *fp, fmt, va_alist)
#else
va_start (ap);
#endif
- ret = __svfscanf_r (_REENT, fp, fmt, ap);
+ ret = _vfscanf_r (_REENT, fp, fmt, ap);
va_end (ap);
return ret;
}
@@ -71,7 +71,7 @@ _fscanf_r(ptr, FILE *fp, fmt, va_alist)
#else
va_start (ap);
#endif
- ret = __svfscanf_r (ptr, fp, fmt, ap);
+ ret = _vfscanf_r (ptr, fp, fmt, ap);
va_end (ap);
return (ret);
}