compat_threads.c needs string.h for memset.

This commit is contained in:
Nick Mathewson 2018-06-28 15:20:26 -04:00
parent a742a826f6
commit b67754cd64

View File

@ -18,6 +18,8 @@
#include "lib/log/torlog.h" #include "lib/log/torlog.h"
#include "lib/log/util_bug.h" #include "lib/log/util_bug.h"
#include <string.h>
/** Allocate and return a new condition variable. */ /** Allocate and return a new condition variable. */
tor_cond_t * tor_cond_t *
tor_cond_new(void) tor_cond_new(void)