https://bugs.winehq.org/show_bug.cgi?id=55694 --- Comment #3 from Milan Hauth <milahu(a)gmail.com> --- yes, i have included string.h still, wineg++ says "error: ‘_stricmp’ was not declared" etc #include <string.h> // fatal error: mbstring.h: No such file or directory //#include <mbstring.h> // fatal error: wcstring.h: No such file or directory //#include <wcstring.h> // fatal error: stricmp.h: No such file or directory //#include <stricmp.h> int main() { if (_stricmp("asdf", "asdf") == 0) return 1; if (_wcsicmp("asdf", "asdf") == 0) return 1; if (_mbsicmp("asdf", "asdf") == 0) return 1; if (_stricmp_l("asdf", "asdf") == 0) return 1; if (_wcsicmp_l("asdf", "asdf") == 0) return 1; if (_mbsicmp_l("asdf", "asdf") == 0) return 1; return 0; } -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.