mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-14 17:11:06 +00:00
14 lines
252 B
C
14 lines
252 B
C
#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;
|
|||
}
|