summaryrefslogtreecommitdiffstats
path: root/src/misc.c
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2015-06-24 16:51:28 +0200
committerAndreas Schneider <asn@cryptomilk.org>2015-06-24 18:36:08 +0200
commit64233fa3bbedd338c216136babafdbfc68b094bb (patch)
treea26d46e4591365ac42ace3266fee635314f0764a /src/misc.c
parentcbf5cf4ac3fa30bbfd00c9943649b0f524298d9f (diff)
misc: Correctly guard the sys/time.h include
Signed-off-by: Andreas Schneider <asn@cryptomilk.org> (cherry picked from commit ef751a26d0cb746966aaee64cfb5d1a87efba535)
Diffstat (limited to 'src/misc.c')
-rw-r--r--src/misc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/misc.c b/src/misc.c
index 6daf60ab..64cda47b 100644
--- a/src/misc.c
+++ b/src/misc.c
@@ -33,9 +33,10 @@
#include <netinet/in.h>
#include <arpa/inet.h>
-#ifndef HAVE_CLOCK_GETTIME
+#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
-#endif /* HAVE_CLOCK_GETTIME */
+#endif /* HAVE_SYS_TIME_H */
+
#endif /* _WIN32 */
#include <limits.h>