glibc/sysdeps/ieee754/ldbl-opt/nldbl-dprintf.c
Roland McGrath 74f4264b7d * sysdeps/ieee754/ldbl-opt/nldbl-dprintf.c: Restore
attribute_hidden here.
2006-01-18 23:30:58 +00:00

16 lines
214 B
C

#include "nldbl-compat.h"
attribute_hidden
int
dprintf (int d, const char *fmt, ...)
{
va_list arg;
int done;
va_start (arg, fmt);
done = __nldbl_vdprintf (d, fmt, arg);
va_end (arg);
return done;
}