mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-27 07:20:11 +00:00
18 lines
299 B
C
18 lines
299 B
C
#include "nldbl-compat.h"
|
|||
|
|||
int
|
|||
attribute_hidden
|
|||
printf (const char *fmt, ...)
|
|||
{
|
|||
va_list arg;
|
|||
int done;
|
|||
|
|||
va_start (arg, fmt);
|
|||
done = __nldbl_vfprintf (stdout, fmt, arg);
|
|||
va_end (arg);
|
|||
|
|||
return done;
|
|||
}
|
|||
extern __typeof (printf) _IO_printf attribute_hidden;
|
|||
strong_alias (printf, _IO_printf)
|