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

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