Have all tests use EXIT() to exit rather than exit(), since the latter doesn't
[openssl.git] / crypto / idea / ideatest.c
index 2c16f95b8a7aa5e89c0e47f629d92c71bda9fe81..98f805d72a599fccdde416e94491ef9ce809be2b 100644 (file)
@@ -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 @@ int main(int argc, char *argv[])
        else
                printf("ok\n");
 
-       exit(err);
+       EXIT(err);
        return(err);
        }