summaryrefslogtreecommitdiff
path: root/regress/unittests/test_helper
diff options
context:
space:
mode:
Diffstat (limited to 'regress/unittests/test_helper')
-rw-r--r--regress/unittests/test_helper/fuzz.c2
-rw-r--r--regress/unittests/test_helper/test_helper.c6
2 files changed, 7 insertions, 1 deletions
diff --git a/regress/unittests/test_helper/fuzz.c b/regress/unittests/test_helper/fuzz.c
index b64af24ed..63b2370d2 100644
--- a/regress/unittests/test_helper/fuzz.c
+++ b/regress/unittests/test_helper/fuzz.c
@@ -17,6 +17,8 @@
17 17
18/* Utility functions/framework for fuzz tests */ 18/* Utility functions/framework for fuzz tests */
19 19
20#include "includes.h"
21
20#include <sys/types.h> 22#include <sys/types.h>
21 23
22#include <assert.h> 24#include <assert.h>
diff --git a/regress/unittests/test_helper/test_helper.c b/regress/unittests/test_helper/test_helper.c
index 8f0bbdec9..5881538ee 100644
--- a/regress/unittests/test_helper/test_helper.c
+++ b/regress/unittests/test_helper/test_helper.c
@@ -17,6 +17,8 @@
17 17
18/* Utility functions/framework for regress tests */ 18/* Utility functions/framework for regress tests */
19 19
20#include "includes.h"
21
20#include <sys/types.h> 22#include <sys/types.h>
21#include <sys/param.h> 23#include <sys/param.h>
22 24
@@ -30,7 +32,9 @@
30 32
31#include <openssl/bn.h> 33#include <openssl/bn.h>
32 34
33#include <vis.h> 35#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H) && !defined(BROKEN_STRNVIS)
36# include <vis.h>
37#endif
34 38
35#include "test_helper.h" 39#include "test_helper.h"
36 40