blob: 91c0d4cd4f7a3f7bdb515f8b50203f0aa4f883c1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* This file defines one of the deprecated scanf variants. */
#include <features.h>
#undef __GLIBC_USE_DEPRECATED_SCANF
#define __GLIBC_USE_DEPRECATED_SCANF 1
#include "nldbl-compat.h"
int
attribute_hidden
vswscanf (const wchar_t *string, const wchar_t *fmt, va_list ap)
{
return __nldbl_vswscanf (string, fmt, ap);
}
|