summaryrefslogtreecommitdiff
path: root/sysdeps/ieee754/ldbl-opt/nldbl-fwscanf.c
blob: 27fc1a72717d65934f9a8264caaf475880667b11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "nldbl-compat.h"

int
attribute_hidden
fwscanf (FILE *stream, const wchar_t *fmt, ...)
{
  va_list arg;
  int done;

  va_start (arg, fmt);
  done = __nldbl_vfwscanf (stream, fmt, arg);
  va_end (arg);

  return done;
}