1#include "nldbl-compat.h"
2
3int
4attribute_hidden
5obstack_printf (struct obstack *obstack, const char *fmt, ...)
6{
7 int result;
8 va_list ap;
9 va_start (ap, fmt);
10 result = __nldbl_obstack_vprintf (obstack, fmt, ap);
11 va_end (ap);
12 return result;
13}
14

source code of glibc/sysdeps/ieee754/ldbl-opt/nldbl-obstack_printf.c