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

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