From 51c5e9f68500a216ca6f56642cf5b328f391b244 Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Wed, 29 Jul 2009 17:33:30 +0000 Subject: [PATCH] fixing #4031: * 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 --- headers/posix/stdlib.h | 1 + 1 file changed, 1 insertion(+) diff --git a/headers/posix/stdlib.h b/headers/posix/stdlib.h index 1dfdbde12c..20715bd7a9 100644 --- a/headers/posix/stdlib.h +++ b/headers/posix/stdlib.h @@ -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);