From b67754cd6484e9a844faec5d0071fc07497b8f30 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 28 Jun 2018 15:20:26 -0400 Subject: [PATCH] compat_threads.c needs string.h for memset. --- src/lib/thread/compat_threads.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/thread/compat_threads.c b/src/lib/thread/compat_threads.c index 1d685b2c3e..972960e242 100644 --- a/src/lib/thread/compat_threads.c +++ b/src/lib/thread/compat_threads.c @@ -18,6 +18,8 @@ #include "lib/log/torlog.h" #include "lib/log/util_bug.h" +#include + /** Allocate and return a new condition variable. */ tor_cond_t * tor_cond_new(void)