http://bugs.winehq.org/show_bug.cgi?id=11608
Summary: printf("%Lf") broken Product: Wine Version: 0.9.44. Platform: Other OS/Version: other Status: UNCONFIRMED Severity: major Priority: P2 Component: -unknown AssignedTo: wine-bugs@winehq.org ReportedBy: muntyan@tamu.edu
The following program (compiled with mingw cross-compiler on linux) prints "-0.000000".
#include <stdio.h>
int main (void) { printf ("%Lf\n", (long double)1); return 0; }