From 7913ba4d91b848ec4e5698c59d43198a3ef9215d Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Tue, 18 Sep 2007 19:57:24 +0000 Subject: Updated to fedora-glibc-20070918T1931 --- sysdeps/ieee754/ldbl-opt/nldbl-isoc99_swscanf.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 sysdeps/ieee754/ldbl-opt/nldbl-isoc99_swscanf.c (limited to 'sysdeps/ieee754/ldbl-opt/nldbl-isoc99_swscanf.c') diff --git a/sysdeps/ieee754/ldbl-opt/nldbl-isoc99_swscanf.c b/sysdeps/ieee754/ldbl-opt/nldbl-isoc99_swscanf.c new file mode 100644 index 0000000000..927d024923 --- /dev/null +++ b/sysdeps/ieee754/ldbl-opt/nldbl-isoc99_swscanf.c @@ -0,0 +1,15 @@ +#include "nldbl-compat.h" + +int +attribute_hidden +__isoc99_swscanf (const wchar_t *s, const wchar_t *fmt, ...) +{ + va_list arg; + int done; + + va_start (arg, fmt); + done = __nldbl___isoc99_vswscanf (s, fmt, arg); + va_end (arg); + + return done; +} -- cgit v1.2.3