Have all tests use EXIT() to exit rather than exit(), since the latter doesn't
[openssl.git] / crypto / hmac / hmactest.c
index 96d3beb8e6180e8f5ee3ee423767beb3bb2f8996..8111901f01fdde97ef6c82676bc9498d8da9785d 100644 (file)
@@ -60,6 +60,8 @@
 #include <string.h>
 #include <stdlib.h>
 
+#include "../e_os.h"
+
 #ifdef OPENSSL_NO_HMAC
 int main(int argc, char *argv[])
 {
@@ -144,7 +146,7 @@ int main(int argc, char *argv[])
                else
                        printf("test %d ok\n",i);
                }
-       exit(err);
+       EXIT(err);
        return(0);
        }