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