blob: 6e26db2a24702351ddd1f3db723431132f9b1d99 [file] [log] [blame]
#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;
}