summaryrefslogtreecommitdiff
path: root/sysdeps/ieee754/ldbl-opt/nldbl-obstack_printf.c
blob: 4abff2dc0d6ee9f2d52be32ae13850460a2fd5e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "nldbl-compat.h"

int
attribute_hidden
obstack_printf (struct obstack *obstack, const char *fmt, ...)
{
  int result;
  va_list ap;
  va_start (ap, fmt);
  result = __nldbl_obstack_vprintf (obstack, fmt, ap);
  va_end (ap);
  return result;
}