diff options
Diffstat (limited to 'sysdeps/ieee754/ldbl-opt/nldbl-sprintf.c')
-rw-r--r-- | sysdeps/ieee754/ldbl-opt/nldbl-sprintf.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/sysdeps/ieee754/ldbl-opt/nldbl-sprintf.c b/sysdeps/ieee754/ldbl-opt/nldbl-sprintf.c deleted file mode 100644 index 5d37a7e..0000000 --- a/sysdeps/ieee754/ldbl-opt/nldbl-sprintf.c +++ /dev/null @@ -1,17 +0,0 @@ -#include "nldbl-compat.h" - -int -attribute_hidden -sprintf (char *s, const char *fmt, ...) -{ - va_list arg; - int done; - - va_start (arg, fmt); - done = __nldbl_vsprintf (s, fmt, arg); - va_end (arg); - - return done; -} -extern __typeof (sprintf) _IO_sprintf attribute_hidden; -strong_alias (sprintf, _IO_sprintf) |