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