blob: dbea1512cf6070b660b8feac7e6215ec3b72a37f [file] [log] [blame]
#include "nldbl-compat.h"
int
attribute_hidden
__isoc99_fwscanf (FILE *stream, const wchar_t *fmt, ...)
{
va_list arg;
int done;
va_start (arg, fmt);
done = __nldbl___isoc99_vfwscanf (stream, fmt, arg);
va_end (arg);
return done;
}