Include sys/time.h in timers.c and time_fmt.c

This fixes compilation on OpenBSD.

Signed-off-by: Kris Katterjohn <katterjohn@gmail.com>
This commit is contained in:
Kris Katterjohn
2018-11-03 14:28:27 -05:00
committed by Nick Mathewson
parent 9431d35074
commit daaa2751ed
2 changed files with 8 additions and 0 deletions
+4
View File
@@ -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>
+4
View File
@@ -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>