1#include "nldbl-compat.h"
2
3attribute_hidden
4int
5fprintf (FILE *stream, const char *fmt, ...)
6{
7 va_list arg;
8 int done;
9
10 va_start (arg, fmt);
11 done = __nldbl_vfprintf (stream, fmt, arg);
12 va_end (arg);
13
14 return done;
15}
16extern __typeof (fprintf) _IO_fprintf attribute_hidden;
17weak_alias (fprintf, _IO_fprintf)
18

source code of glibc/sysdeps/ieee754/ldbl-opt/nldbl-fprintf.c