diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2001-04-27 20:43:42 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2001-04-27 20:43:42 +0000 |
commit | 7cb7017ae0acd7c503b149012285b01e63eeda80 (patch) | |
tree | 1b50f7186c89957bd2b7d9cd6e7e211f7095215f /newlib/libc | |
parent | cba63823f808a747ad762d3a8d5a4d8ef6890e54 (diff) | |
download | newlib-7cb7017ae0acd7c503b149012285b01e63eeda80.zip newlib-7cb7017ae0acd7c503b149012285b01e63eeda80.tar.gz newlib-7cb7017ae0acd7c503b149012285b01e63eeda80.tar.bz2 |
2001-04-27 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/stdlib.h: Add prototype for _strtod_r.
Diffstat (limited to 'newlib/libc')
-rw-r--r-- | newlib/libc/include/stdlib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/newlib/libc/include/stdlib.h b/newlib/libc/include/stdlib.h index 20549f4..a6f1041 100644 --- a/newlib/libc/include/stdlib.h +++ b/newlib/libc/include/stdlib.h @@ -89,6 +89,7 @@ int _EXFUN(rand,(_VOID)); _PTR _EXFUN(realloc,(_PTR __r, size_t __size)); _VOID _EXFUN(srand,(unsigned __seed)); double _EXFUN(strtod,(const char *__n, char **_end_PTR)); +double _EXFUN(_strtod_r,(struct _reent *,const char *__n, char **_end_PTR)); #ifndef __STRICT_ANSI__ float _EXFUN(strtodf,(const char *__n, char **_end_PTR)); #endif |