diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2015-02-04 11:02:36 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2015-02-04 11:02:36 +0000 |
commit | f2eb8ca8bf5d3c170fe4343c18374729ddef215d (patch) | |
tree | bd87f8b54275990449a2d49ce7e80fa4ae3ea5c1 /newlib/libc | |
parent | be8a0cee6d60682feeebf03a6d1d62dc0987871b (diff) | |
download | cygnal-f2eb8ca8bf5d3c170fe4343c18374729ddef215d.tar.gz cygnal-f2eb8ca8bf5d3c170fe4343c18374729ddef215d.tar.bz2 cygnal-f2eb8ca8bf5d3c170fe4343c18374729ddef215d.zip |
* libc/include/wchar.h (wcstold): Drop _LDBL_EQ_DBL requirement for
declaration.
Diffstat (limited to 'newlib/libc')
-rw-r--r-- | newlib/libc/include/wchar.h | 3 |
1 files changed, 0 insertions, 3 deletions
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)); |