diff options
author | Pauli <paul.dale@oracle.com> | 2017-07-12 23:37:01 +0200 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2017-07-13 23:35:17 +0200 |
commit | c2500f658bbf378a94a76420ea7ef3d2bff17f9c (patch) | |
tree | 1c75aea7b9efb2be44b95fa62c637a8b1aab2341 /test/enginetest.c | |
parent | Change return (x) to return x (diff) | |
download | openssl-c2500f658bbf378a94a76420ea7ef3d2bff17f9c.tar.xz openssl-c2500f658bbf378a94a76420ea7ef3d2bff17f9c.zip |
Test cleaning and modernisation
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3917)
Diffstat (limited to 'test/enginetest.c')
-rw-r--r-- | test/enginetest.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/enginetest.c b/test/enginetest.c index d50e41818d..9b00c01226 100644 --- a/test/enginetest.c +++ b/test/enginetest.c @@ -9,13 +9,14 @@ #include <stdio.h> #include <string.h> +#include <stdlib.h> #include <openssl/e_os2.h> #ifdef OPENSSL_NO_ENGINE int main(int argc, char *argv[]) { printf("No ENGINE support\n"); - return (0); + return EXIT_SUCCESS; } #else # include <openssl/buffer.h> |