diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2009-02-12 23:10:01 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2009-02-12 23:10:01 +0000 |
commit | 77ea728b96e00e063b2243487a35e5c395639bfc (patch) | |
tree | 438496c2d14987b8c8e49c0dd86238aa2229fa28 /newlib/libc/include | |
parent | 545b4d2b57796884670948b6bec0ca386be2c893 (diff) | |
download | cygnal-77ea728b96e00e063b2243487a35e5c395639bfc.tar.gz cygnal-77ea728b96e00e063b2243487a35e5c395639bfc.tar.bz2 cygnal-77ea728b96e00e063b2243487a35e5c395639bfc.zip |
2009-02-12 Corinna Vinschen <corinna@vinschen.de>
* libc/include/wchar.h (_wcstod_r): Declare.
(_wcstof_r): Declare.
(wcstod): Declare.
(wcstof): Declare.
* libc/stdlib/Makefile.am (GENERAL_SOURCES): Add wcstod.c.
(CHEWOUT_FILES): Add wcstod.def.
* libc/stdlib/Makefile.in: Regenerate.
* libc/stdlib/stdlib.tex: Add wcstod.
* libc/stdlib/wcstod.c: New file.
Diffstat (limited to 'newlib/libc/include')
-rw-r--r-- | newlib/libc/include/wchar.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/newlib/libc/include/wchar.h b/newlib/libc/include/wchar.h index 815c3c19f..31e768700 100644 --- a/newlib/libc/include/wchar.h +++ b/newlib/libc/include/wchar.h @@ -74,6 +74,10 @@ wchar_t *_EXFUN(wcsrchr, (const wchar_t *, wchar_t)); size_t _EXFUN(wcsspn, (const wchar_t *, const wchar_t *)); wchar_t *_EXFUN(wcsstr, (const wchar_t *, const wchar_t *)); wchar_t *_EXFUN(wcstok, (wchar_t *, const wchar_t *, wchar_t **)); +double _EXFUN(wcstod, (const wchar_t *, wchar_t **)); +double _EXFUN(_wcstod_r, (struct _reent *, const wchar_t *, wchar_t **)); +float _EXFUN(wcstof, (const wchar_t *, wchar_t **)); +float _EXFUN(_wcstof_r, (struct _reent *, const wchar_t *, wchar_t **)); int _EXFUN(wcswidth, (const wchar_t *, size_t)); size_t _EXFUN(wcsxfrm, (wchar_t *, const wchar_t *, size_t)); int _EXFUN(wcwidth, (const wchar_t)); |