From c9b40515e8deecba9e179d48c0f826019c6ee5c4 Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Sun, 31 Oct 2010 10:30:16 +0000 Subject: s/abort/TerminateProcess/ --- src/init.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/init.c') diff --git a/src/init.c b/src/init.c index 10f8e43..d4282ac 100644 --- a/src/init.c +++ b/src/init.c @@ -37,7 +37,8 @@ # define TLS_OUT_OF_INDEXES 0xFFFFFFFF # endif # ifndef __MINGW32CE__ -# define abort() exit(1) +# /* Replace the Mingw32CE provided abort function. */ +# define abort() do { TerminateProcess (GetCurrentProcess(), 8); } while (0) # endif #endif -- cgit v1.2.3