diff options
author | Werner Koch <[email protected]> | 2010-10-31 10:30:16 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2010-10-31 10:30:16 +0000 |
commit | c9b40515e8deecba9e179d48c0f826019c6ee5c4 (patch) | |
tree | d119d54177e8ea0a84a32c3c8ab92e6d4567e190 /src/init.c | |
parent | 2010-10-29 Marcus Brinkmann <[email protected]> (diff) | |
download | libgpg-error-c9b40515e8deecba9e179d48c0f826019c6ee5c4.tar.gz libgpg-error-c9b40515e8deecba9e179d48c0f826019c6ee5c4.zip |
s/abort/TerminateProcess/
Diffstat (limited to 'src/init.c')
-rw-r--r-- | src/init.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |