summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKris Katterjohn <katterjohn@gmail.com>2018-11-03 14:28:27 -0500
committerNick Mathewson <nickm@torproject.org>2018-11-06 15:15:22 -0500
commitdaaa2751ed6ea8fe6941b63ea819804d8f0a9fac (patch)
treed8824176bfaf77f2c919dff9bfd2dc99f1d9db3d
parent9431d3507490cc85a32969f7eb81808b08966677 (diff)
downloadtor-daaa2751ed6ea8fe6941b63ea819804d8f0a9fac.tar.gz
tor-daaa2751ed6ea8fe6941b63ea819804d8f0a9fac.zip
Include sys/time.h in timers.c and time_fmt.c
This fixes compilation on OpenBSD. Signed-off-by: Kris Katterjohn <katterjohn@gmail.com>
-rw-r--r--src/lib/encoding/time_fmt.c4
-rw-r--r--src/lib/evloop/timers.c4
2 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/encoding/time_fmt.c b/src/lib/encoding/time_fmt.c
index a921fc681c..233d0dddff 100644
--- a/src/lib/encoding/time_fmt.c
+++ b/src/lib/encoding/time_fmt.c
@@ -26,6 +26,10 @@
#include <string.h>
#include <time.h>
+#ifdef HAVE_SYS_TIME_H
+#include <sys/time.h>
+#endif
+
#ifdef _WIN32
/* For struct timeval */
#include <winsock2.h>
diff --git a/src/lib/evloop/timers.c b/src/lib/evloop/timers.c
index c4e85c7c93..3603bf1a7d 100644
--- a/src/lib/evloop/timers.c
+++ b/src/lib/evloop/timers.c
@@ -39,6 +39,10 @@
#include "lib/malloc/malloc.h"
#include "lib/time/compat_time.h"
+#ifdef HAVE_SYS_TIME_H
+#include <sys/time.h>
+#endif
+
#ifdef _WIN32
// For struct timeval.
#include <winsock2.h>