about summary refs log tree commit diff
path: root/sysdeps/ieee754/ldbl-opt/nldbl-dprintf.c
blob: 2281e099e0f6b3342c02fc4b084463e66623cc38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "nldbl-compat.h"

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;
}