commit 6407b736c8ffd8dc2abd867af68c8578922e6b6a
parent 384f6b3d5b15c9d511fb8f27c8eabd417cb75b16
Author: sin <sin@2f30.org>
Date: Tue, 12 Apr 2016 11:44:54 +0100
we need sys/time.h for timeval in stun.h
Diffstat:
4 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/auth.c b/auth.c
@@ -1,3 +1,5 @@
+#include <sys/time.h>
+
#include <poll.h>
#include <stdint.h>
#include <stdlib.h>
diff --git a/crypto.c b/crypto.c
@@ -1,3 +1,5 @@
+#include <sys/time.h>
+
#include <string.h>
#include <openssl/evp.h>
diff --git a/net.c b/net.c
@@ -1,3 +1,5 @@
+#include <sys/time.h>
+
#include <errno.h>
#include <stdint.h>
#include <stdlib.h>
diff --git a/util.c b/util.c
@@ -1,4 +1,5 @@
#include <sys/types.h>
+#include <sys/time.h>
#include <grp.h>
#include <pwd.h>