commit | 55f78baf32f213301a0e8d6c6e7f40bd3b9857b1 | [log] [tgz] |
---|---|---|
author | Richard Levitte <levitte@openssl.org> | Thu Nov 28 18:54:30 2002 +0000 |
committer | Richard Levitte <levitte@openssl.org> | Thu Nov 28 18:54:30 2002 +0000 |
tree | 1daf577fe941ef129c8657f231b060b786a03d4b | |
parent | 6c359479d7755e6f228196e17fcdc98a05724d78 [diff] [blame] |
Have all tests use EXIT() to exit rather than exit(), since the latter doesn't always give the expected result on some platforms.
diff --git a/crypto/idea/ideatest.c b/crypto/idea/ideatest.c index 2c16f95..98f805d 100644 --- a/crypto/idea/ideatest.c +++ b/crypto/idea/ideatest.c
@@ -60,6 +60,8 @@ #include <string.h> #include <stdlib.h> +#include "../e_os.h" + #ifdef OPENSSL_NO_IDEA int main(int argc, char *argv[]) { @@ -167,7 +169,7 @@ else printf("ok\n"); - exit(err); + EXIT(err); return(err); }