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
8 int
9 attribute_hidden
10 __vsscanf (const char *string, const char *fmt, va_list ap)
11 {
12 return __nldbl_vsscanf (string, fmt, ap);
13 }
14 extern __typeof (__vsscanf) vsscanf attribute_hidden;
15 weak_alias (__vsscanf, vsscanf)