nldbl-obstack_printf_chk.c 280 B

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