From 55f78baf32f213301a0e8d6c6e7f40bd3b9857b1 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 28 Nov 2002 18:54:30 +0000 Subject: Have all tests use EXIT() to exit rather than exit(), since the latter doesn't always give the expected result on some platforms. --- crypto/idea/ideatest.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'crypto/idea') diff --git a/crypto/idea/ideatest.c b/crypto/idea/ideatest.c index 2c16f95b8a..98f805d72a 100644 --- a/crypto/idea/ideatest.c +++ b/crypto/idea/ideatest.c @@ -60,6 +60,8 @@ #include #include +#include "../e_os.h" + #ifdef OPENSSL_NO_IDEA int main(int argc, char *argv[]) { @@ -167,7 +169,7 @@ int main(int argc, char *argv[]) else printf("ok\n"); - exit(err); + EXIT(err); return(err); } -- cgit v1.2.3