summaryrefslogtreecommitdiff
path: root/src/basic/hashmap.c
diff options
context:
space:
mode:
authorHenrik Kaare Poulsen <henrik@kaarposoft.dk>2015-12-13 19:31:05 +0100
committerEvgeny Vereshchagin <evvers@ya.ru>2015-12-15 07:10:50 +0000
commit3d4db144b073f5a03e9c679af3c90433f096649b (patch)
treeb3411d6e89ab52876fae3708fc82cc4ab41428ab /src/basic/hashmap.c
parent654d1b335030acccf0894a58b7a30e3130b05383 (diff)
basic: ENABLE_DEBUG_HASHMAP needs <pthread.h>
this is a follow-up for commit 11c3a36649e5e5e77db499c92f3
Diffstat (limited to 'src/basic/hashmap.c')
-rw-r--r--src/basic/hashmap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/basic/hashmap.c b/src/basic/hashmap.c
index b3954e3223..286ddfef5b 100644
--- a/src/basic/hashmap.c
+++ b/src/basic/hashmap.c
@@ -37,6 +37,7 @@
#include "util.h"
#ifdef ENABLE_DEBUG_HASHMAP
+#include <pthread.h>
#include "list.h"
#endif