1 #include "nldbl-compat.h" 2 3 int 4 attribute_hidden obstack_printf(struct obstack * obstack,const char * fmt,...)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