]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/ieee754/ldbl-opt/nldbl-fwprintf.c
2.5-18.1
[thirdparty/glibc.git] / sysdeps / ieee754 / ldbl-opt / nldbl-fwprintf.c
1 #include "nldbl-compat.h"
2
3 int
4 attribute_hidden
5 weak_function
6 fwprintf (FILE *stream, const wchar_t *fmt, ...)
7 {
8 va_list arg;
9 int done;
10
11 va_start (arg, fmt);
12 done = __nldbl_vfwprintf (stream, fmt, arg);
13 va_end (arg);
14
15 return done;
16 }