blob: 8553d44894f9a54ea68181d5e9deb9c98601fb3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
diff --git a/src/util/rand_xor.c b/src/util/rand_xor.c
index 81b64f1ea71..14e6c9d27c3 100644
--- a/src/util/rand_xor.c
+++ b/src/util/rand_xor.c
@@ -27,6 +27,8 @@
#if !DETECT_OS_WINDOWS
#if defined(HAVE_GETRANDOM)
#include <sys/random.h>
+#include <sys/types.h>
+#include <sys/stat.h>
#endif
#include <unistd.h>
#include <fcntl.h>
|