Signed-off-by: Jacek Caban jacek@codeweavers.com --- include/msvcrt/crtdbg.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)
Hi,
While running your changed tests, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check?
Full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=70620
Your paranoid android.
=== debiant (32 bit WoW report) ===
kernel32: change.c:320: Test failed: should be ready
Jacek Caban jacek@codeweavers.com wrote:
-#if defined(__GNUC__) && defined(__i386__) +#if defined(_MSC_VER) +#define _CrtDbgBreak() __debugbreak() +#elif defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__)
Is closing ')' missing?