mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-03 18:31:04 +00:00
14 lines
280 B
C
14 lines
280 B
C
|
#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;
|
||
|
}
|