commit b67754cd6484e9a844faec5d0071fc07497b8f30
parent a742a826f6fe4eafef047c4dd7ca7fa899d2f823
Author: Nick Mathewson <nickm@torproject.org>
Date: Thu, 28 Jun 2018 15:20:26 -0400
compat_threads.c needs string.h for memset.
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git 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 <string.h>
+
/** Allocate and return a new condition variable. */
tor_cond_t *
tor_cond_new(void)