http://bugs.winehq.org/show_bug.cgi?id=4337
------- Additional Comments From xerox_xerox2000@yahoo.co.uk 2006-21-01 06:02 ------- Created an attachment (id=1732) --> (http://bugs.winehq.org/attachment.cgi?id=1732&action=view) a.exe gives wrong output
it's a bug in atof. Even the simple attached program (from http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclib/html/...)
gives a wrong output with builtin msvcrt. Works fine with native: atof test: " -2309.12E-15"; float: -2.309120e-12 atof test: "7.8912654773d210"; float: 7.891265e+00 atoi test: " -9885 pigs"; integer: -9885 atol test: "98854 dollars"; long: 98854 [root@h185158 ~]# WINEDLLOVERRIDES="msvcrt=n" wine a.exe atof test: " -2309.12E-15"; float: -2.309120e-012 atof test: "7.8912654773d210"; float: 7.891265e+210 atoi test: " -9885 pigs"; integer: -9885 atol test: "98854 dollars"; long: 98854