aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2019-02-22 13:18:54 +0100
committerToni Uhlig <matzeton@googlemail.com>2019-02-22 13:34:59 +0100
commitf2ec58545c8b48a8a664d9839bc73129231839ee (patch)
tree9bf1c8bb223ed1cc6fd91ee567d8085eb3cd7cec
parent08d7dd88787485c90d4757d622beb2526bb3ea14 (diff)
fixed CLang build error (missing includes)
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rw-r--r--src/utils.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/utils.c b/src/utils.c
index 7e8adb1..5647d24 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -48,6 +48,8 @@
#endif
#include <stdio.h>
#include <stdlib.h>
+#include <unistd.h>
+#include <fcntl.h>
#include <stdarg.h>
#include <string.h>
#include <time.h>
@@ -59,6 +61,7 @@
#ifndef WIN32
#include <syslog.h>
#include <sys/types.h>
+#include <sys/stat.h>
#include <sys/socket.h>
#include <netdb.h>
#include <netinet/in.h>
@@ -166,7 +169,7 @@ int pt_random(void) {
if (rng_fd < 0)
rng_fd = open("/dev/random", O_RDONLY);
assert(rng_fd >= 0);
- assert( read(rng_fd, &rnd_val, sizeof rnd_val) == sizeof rnd_val ):
+ assert( read(rng_fd, &rnd_val, sizeof rnd_val) == sizeof rnd_val );
return rnd_val;
#else
srand(time(0));