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
committerSven Eden <yamakuzure@gmx.net>2017-05-17 15:22:14 +0200
commitd9a6c68accd606c69cfb92b6ffba3ca8e3cf6c56 (patch)
tree15a51aef08361ba0b542d910ffbca69ad13e885c /src/basic/hashmap.c
parent9570dec98aff9489c9323683061cec93bb92d654 (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 fa8768b7f..0e46716c5 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