diff options
Diffstat (limited to 'stdio-common/vfscanf.c')
-rw-r--r-- | stdio-common/vfscanf.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/stdio-common/vfscanf.c b/stdio-common/vfscanf.c index a0bb63281c..b0e48df4f8 100644 --- a/stdio-common/vfscanf.c +++ b/stdio-common/vfscanf.c @@ -724,6 +724,12 @@ __vfscanf (FILE *s, const char *format, va_list argptr) return ((c == EOF || ungetc (c, s)), done); } -#ifndef USE_IN_LIBIO -weak_alias (__vfscanf, vfscanf) +#ifdef USE_IN_LIBIO +int +__vfscanf (FILE *s, const char *format, va_list argptr) +{ + return _IO_vfscanf (s, format, argptr, NULL); +} #endif + +weak_alias (__vfscanf, vfscanf) |