glibc/sysdeps/ieee754/ldbl-opt/nldbl-swprintf.c

16 lines
237 B
C

#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;
}