summaryrefslogtreecommitdiff
path: root/sysdeps/ieee754/ldbl-opt/nldbl-sprintf.c
blob: 5d37a7e7f07a4c8b8fa289cc0abbfa60d2b95d6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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)