"Erich E. Hoover" erich.e.hoover@gmail.com writes:
v2: Fix test results on 32-bit Debian *sigh*
Fixes the "regression" with cl.exe caused by 0e183cc3c0d3b6f89f79047cdd71c389afc75073. ( https://bugs.winehq.org/show_bug.cgi?id=48160 )
Best, Erich
From 9742794ff106d76713f80c6497accc1fc78ae6c9 Mon Sep 17 00:00:00 2001 From: "Erich E. Hoover" erich.e.hoover@gmail.com Date: Wed, 18 Dec 2019 15:48:11 -0700 Subject: msvcrt: Implement strtod without using 'long double'.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=48160 Signed-off-by: Erich E. Hoover erich.e.hoover@gmail.com
dlls/msvcrt/string.c | 60 ++++++++++++++++++++++++++------------ dlls/msvcrt/tests/string.c | 44 ++++++++++++++++++++++++++-- 2 files changed, 83 insertions(+), 21 deletions(-)
Thanks! Do we still need the control87 call then?
Also we should do the same changes in wcstod().