1/* This file defines one of the deprecated scanf variants. */
2#include <features.h>
3#undef __GLIBC_USE_DEPRECATED_SCANF
4#define __GLIBC_USE_DEPRECATED_SCANF 1
5
6#include "nldbl-compat.h"
7
8int
9attribute_hidden
10__vfscanf (FILE *s, const char *fmt, va_list ap)
11{
12 return __nldbl__IO_vfscanf (s, fmt, ap, NULL);
13}
14extern __typeof (__vfscanf) vfscanf attribute_hidden;
15weak_alias (__vfscanf, vfscanf)
16

source code of glibc/sysdeps/ieee754/ldbl-opt/nldbl-vfscanf.c