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