Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/newlib
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2015-02-04 14:02:36 +0300
committerCorinna Vinschen <corinna@vinschen.de>2015-02-04 14:02:36 +0300
commitf2eb8ca8bf5d3c170fe4343c18374729ddef215d (patch)
treebd87f8b54275990449a2d49ce7e80fa4ae3ea5c1 /newlib
parentbe8a0cee6d60682feeebf03a6d1d62dc0987871b (diff)
* libc/include/wchar.h (wcstold): Drop _LDBL_EQ_DBL requirement for
declaration.
Diffstat (limited to 'newlib')
-rw-r--r--newlib/ChangeLog5
-rw-r--r--newlib/libc/include/wchar.h3
2 files changed, 5 insertions, 3 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index 9b29994b0..eaf5ae8f3 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,8 @@
+2015-02-04 Corinna Vinschen <vinschen@redhat.com>
+
+ * libc/include/wchar.h (wcstold): Drop _LDBL_EQ_DBL requirement for
+ declaration.
+
2015-01-29 Nick Clifton <nickc@redhat.com>
* libc/stdlib/wcstold.c (wcstold): Add implementation for when
diff --git a/newlib/libc/include/wchar.h b/newlib/libc/include/wchar.h
index 596cce698..d19dae9f8 100644
--- a/newlib/libc/include/wchar.h
+++ b/newlib/libc/include/wchar.h
@@ -143,10 +143,7 @@ long _EXFUN(_wcstol_r, (struct _reent *, const wchar_t *, wchar_t **, int));
long long _EXFUN(_wcstoll_r, (struct _reent *, const wchar_t *, wchar_t **, int));
unsigned long _EXFUN(_wcstoul_r, (struct _reent *, const wchar_t *, wchar_t **, int));
unsigned long long _EXFUN(_wcstoull_r, (struct _reent *, const wchar_t *, wchar_t **, int));
-/* On platforms where long double equals double. */
-#ifdef _LDBL_EQ_DBL
long double _EXFUN(wcstold, (const wchar_t *, wchar_t **));
-#endif /* _LDBL_EQ_DBL */
wint_t _EXFUN(fgetwc, (__FILE *));
wchar_t *_EXFUN(fgetws, (wchar_t *__restrict, int, __FILE *__restrict));