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>2014-02-01 22:48:56 +0100
commit2cc5142fb13e00e4c11179b156fdcec7cd4cde77 (patch)
treea8139bbecbffdc23c2b0abbc940265667b05d7ed /crypto/cryptlib.c
parentd451ece4e7edce8c954daa084c83686647dcda0f (diff)
Improve WINCE support.
Submitted by: Pierre Delaage (cherry picked from commit a006fef78e56b078549a80f4bb4518b6a02eba84) Resolved conflicts: crypto/bio/bss_dgram.c ssl/d1_lib.c util/pl/VC-32.pl
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 680dd0a78c..2903bac2a8 100644
--- a/crypto/cryptlib.c
+++ b/crypto/cryptlib.c
@@ -935,7 +935,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
}