2.9
[glibc/nacl-glibc.git] / sysdeps / ieee754 / ldbl-opt / nldbl-printf.c
blobe4b0fbae0cc62452772363dd1463ff6dad337c8f
1 #include "nldbl-compat.h"
3 int
4 attribute_hidden
5 printf (const char *fmt, ...)
7 va_list arg;
8 int done;
10 va_start (arg, fmt);
11 done = __nldbl_vfprintf (stdout, fmt, arg);
12 va_end (arg);
14 return done;
16 extern __typeof (printf) _IO_printf attribute_hidden;
17 strong_alias (printf, _IO_printf)