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

int
attribute_hidden
swprintf (wchar_t *s, size_t n, const wchar_t *fmt, ...)
{
  va_list arg;
  int done;

  va_start (arg, fmt);
  done = __nldbl_vswprintf (s, n, fmt, arg);
  va_end (arg);

  return done;
}