blob: e4b0fbae0cc62452772363dd1463ff6dad337c8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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)
|