diff options
Diffstat (limited to 'sysdeps/ieee754/ldbl-opt/nldbl-dprintf.c')
-rw-r--r-- | sysdeps/ieee754/ldbl-opt/nldbl-dprintf.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sysdeps/ieee754/ldbl-opt/nldbl-dprintf.c b/sysdeps/ieee754/ldbl-opt/nldbl-dprintf.c new file mode 100644 index 0000000000..6e26db2a24 --- /dev/null +++ b/sysdeps/ieee754/ldbl-opt/nldbl-dprintf.c @@ -0,0 +1,15 @@ +#include "nldbl-compat.h" + +attribute_hidden +int +dprintf (int d, const char *fmt, ...) +{ + va_list arg; + int done; + + va_start (arg, fmt); + done = __nldbl_vdprintf (d, fmt, arg); + va_end (arg); + + return done; +} |