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, 0 insertions, 15 deletions
diff --git a/sysdeps/ieee754/ldbl-opt/nldbl-dprintf.c b/sysdeps/ieee754/ldbl-opt/nldbl-dprintf.c deleted file mode 100644 index 6e26db2a24..0000000000 --- a/sysdeps/ieee754/ldbl-opt/nldbl-dprintf.c +++ /dev/null @@ -1,15 +0,0 @@ -#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; -} |