diff options
author | Richard Levitte <levitte@openssl.org> | 2017-04-28 14:37:19 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2017-04-28 15:59:46 +0200 |
commit | 579d0fabcddb4a0ec4307be420f0bc7c2eea6b7c (patch) | |
tree | 727c517e198f387031b228b4154cbb02e9c18cae /test/testutil/test_main.c | |
parent | Add checks on return code when applying some settings. (diff) | |
download | openssl-579d0fabcddb4a0ec4307be420f0bc7c2eea6b7c.tar.xz openssl-579d0fabcddb4a0ec4307be420f0bc7c2eea6b7c.zip |
testutil: Move printing function declarations to "internal" header
These functions aren't meant to be used directly by the test programs,
reflect that by making the declarations a little harder to reach, but
still available enough if there's a need to override them.
Reviewed-by: Andy Polyakov <appro@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3345)
Diffstat (limited to 'test/testutil/test_main.c')
-rw-r--r-- | test/testutil/test_main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/testutil/test_main.c b/test/testutil/test_main.c index 0152421fe1..7c9843c01c 100644 --- a/test/testutil/test_main.c +++ b/test/testutil/test_main.c @@ -8,6 +8,7 @@ */ #include "../testutil.h" +#include "output.h" #include <stdio.h> |