diff options
author | Richard Levitte <levitte@openssl.org> | 2002-11-28 18:54:30 +0000 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2002-11-28 18:54:30 +0000 |
commit | 55f78baf32f213301a0e8d6c6e7f40bd3b9857b1 (patch) | |
tree | 1daf577fe941ef129c8657f231b060b786a03d4b /crypto/md4 | |
parent | 6c359479d7755e6f228196e17fcdc98a05724d78 (diff) | |
download | openssl-new-55f78baf32f213301a0e8d6c6e7f40bd3b9857b1.tar.gz |
Have all tests use EXIT() to exit rather than exit(), since the latter doesn't
always give the expected result on some platforms.
Diffstat (limited to 'crypto/md4')
-rw-r--r-- | crypto/md4/md4test.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/md4/md4test.c b/crypto/md4/md4test.c index e0fdc42282..21a77d96f7 100644 --- a/crypto/md4/md4test.c +++ b/crypto/md4/md4test.c @@ -60,6 +60,8 @@ #include <string.h> #include <stdlib.h> +#include "../e_os.h" + #ifdef OPENSSL_NO_MD4 int main(int argc, char *argv[]) { @@ -118,7 +120,7 @@ int main(int argc, char *argv[]) R++; P++; } - exit(err); + EXIT(err); return(0); } |