2001-04-27 Jeff Johnston <jjohnstn@redhat.com>

* libc/include/stdlib.h: Add prototype for _strtod_r.
This commit is contained in:
Jeff Johnston 2001-04-27 20:43:42 +00:00
parent cba63823f8
commit 7cb7017ae0
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2001-04-27 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/stdlib.h: Add prototype for _strtod_r.
2001-04-24 Charles Wilson <cwilson@ece.gatech.edu
* libc/stdio/vprintf.c (vprintf): fix signature to use _DEFUN

View File

@ -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