* added declaration of strtof() to stdlib.h, as we now provide it alongside
  with strtod()

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31926 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Oliver Tappe 2009-07-29 17:33:30 +00:00
parent a50f9555a8
commit 51c5e9f685
1 changed files with 1 additions and 0 deletions

View File

@ -89,6 +89,7 @@ extern unsigned int atoui(const char *string);
extern unsigned long atoul(const char *string);
extern double strtod(const char *string, char **end);
extern float strtof(const char *string, char **end);
extern long strtol(const char *string, char **end, int base);
extern unsigned long strtoul(const char *string, char **end, int base);
extern long long strtoll(const char *string, char **end, int base);