summaryrefslogtreecommitdiff
path: root/src/regress
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress')
-rw-r--r--src/regress/lib/libc/arc4random-fork/arc4random-fork.c1
-rw-r--r--src/regress/lib/libcrypto/base64/base64test.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/regress/lib/libc/arc4random-fork/arc4random-fork.c b/src/regress/lib/libc/arc4random-fork/arc4random-fork.c
index c1e87d21c9..4bc9c634f1 100644
--- a/src/regress/lib/libc/arc4random-fork/arc4random-fork.c
+++ b/src/regress/lib/libc/arc4random-fork/arc4random-fork.c
@@ -23,6 +23,7 @@
23#include <stdlib.h> 23#include <stdlib.h>
24#include <string.h> 24#include <string.h>
25#include <unistd.h> 25#include <unistd.h>
26#include <stdint.h>
26 27
27#define CHECK(x) assert(x) 28#define CHECK(x) assert(x)
28#define CHECK_EQ(a, b) assert((a) == (b)) 29#define CHECK_EQ(a, b) assert((a) == (b))
diff --git a/src/regress/lib/libcrypto/base64/base64test.c b/src/regress/lib/libcrypto/base64/base64test.c
index 17dcfaf302..ed494b6d40 100644
--- a/src/regress/lib/libcrypto/base64/base64test.c
+++ b/src/regress/lib/libcrypto/base64/base64test.c
@@ -20,6 +20,7 @@
20#include <err.h> 20#include <err.h>
21#include <stdio.h> 21#include <stdio.h>
22#include <string.h> 22#include <string.h>
23#include <sys/types.h>
23 24
24#define BUF_SIZE 128 25#define BUF_SIZE 128
25 26