From: Nick Mathewson Date: Thu, 28 Jun 2018 19:20:26 +0000 (-0400) Subject: compat_threads.c needs string.h for memset. X-Git-Tag: tor-0.3.5.1-alpha~313 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b67754cd6484e9a844faec5d0071fc07497b8f30;p=thirdparty%2Ftor.git compat_threads.c needs string.h for memset. --- 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)