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/md4/md4test.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'crypto/md4') 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 #include +#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); } -- cgit v1.2.3