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

18 lines
308 B
C

#include "nldbl-compat.h"
int
attribute_hidden
sprintf (char *s, const char *fmt, ...)
{
va_list arg;
int done;
va_start (arg, fmt);
done = __nldbl_vsprintf (s, fmt, arg);
va_end (arg);
return done;
}
extern __typeof (sprintf) _IO_sprintf attribute_hidden;
strong_alias (sprintf, _IO_sprintf)