Alex Henrie : include: Add strtof and strtold.

Alexandre Julliard julliard at winehq.org
Wed May 2 15:50:02 CDT 2018


Module: wine
Branch: master
Commit: ccbfb951c25a76d689ffd4a203b3e4fd2e13e92c
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=ccbfb951c25a76d689ffd4a203b3e4fd2e13e92c

Author: Alex Henrie <alexhenrie24 at gmail.com>
Date:   Tue May  1 22:52:00 2018 -0600

include: Add strtof and strtold.

Signed-off-by: Alex Henrie <alexhenrie24 at gmail.com>
Signed-off-by: Piotr Caban <piotr at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 include/msvcrt/stdlib.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/msvcrt/stdlib.h b/include/msvcrt/stdlib.h
index a325187..2851e19 100644
--- a/include/msvcrt/stdlib.h
+++ b/include/msvcrt/stdlib.h
@@ -203,7 +203,9 @@ int           __cdecl rand(void);
 errno_t       __cdecl rand_s(unsigned int*);
 void*         __cdecl realloc(void*,size_t);
 void          __cdecl srand(unsigned int);
+float         __cdecl strtof(const char*,char**);
 double        __cdecl strtod(const char*,char**);
+double        __cdecl strtold(const char*,char**);
 __msvcrt_long __cdecl strtol(const char*,char**,int);
 __msvcrt_ulong __cdecl strtoul(const char*,char**,int);
 __int64       __cdecl _strtoi64(const char*,char**,int);




More information about the wine-cvs mailing list