summaryrefslogtreecommitdiffstats
path: root/crypto/cryptlib.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2013-01-19 21:23:13 +0100
committerAndy Polyakov <appro@openssl.org>2013-01-19 21:23:13 +0100
commita006fef78e56b078549a80f4bb4518b6a02eba84 (patch)
tree16669073d67ca852e41b488283fb617409839547 /crypto/cryptlib.c
parent0e5cf7bc09377de8564b9a18d96050b87b156bb0 (diff)
Improve WINCE support.
Submitted by: Pierre Delaage
Diffstat (limited to 'crypto/cryptlib.c')
-rw-r--r--crypto/cryptlib.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/cryptlib.c b/crypto/cryptlib.c
index 14453491de..07b0a66217 100644
--- a/crypto/cryptlib.c
+++ b/crypto/cryptlib.c
@@ -387,7 +387,9 @@ void OpenSSLDie(const char *file,int line,const char *assertion)
abort();
#else
/* Win32 abort() customarily shows a dialog, but we just did that... */
+#if !defined(_WIN32_WCE)
raise(SIGABRT);
+#endif
_exit(3);
#endif
}