Have all tests use EXIT() to exit rather than exit(), since the latter doesn't
[openssl.git] / crypto / rc4 / rc4test.c
index a28d457c8d5dec3aaaf7563c8123bb4dad8b0c74..b9d8f209753667b59e483bd90dad2f46eb9c4e49 100644 (file)
@@ -60,6 +60,8 @@
 #include <stdlib.h>
 #include <string.h>
 
+#include "../e_os.h"
+
 #ifdef OPENSSL_NO_RC4
 int main(int argc, char *argv[])
 {
@@ -195,7 +197,7 @@ int main(int argc, char *argv[])
                        }
                }
        printf("done\n");
-       exit(err);
+       EXIT(err);
        return(0);
        }
 #endif