From 7f25db7f8baccdd6a859fdba70f33a38ce90f92c Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Wed, 28 Oct 2015 15:57:22 -0400 Subject: [PATCH] Fix: rculfhash only needs to include urcu-pointers.h rculfhash is not meant to use a specific urcu flavor, but rather receive the flavor to use as parameter to _cds_lfht_new(). All we need is the API of urcu-pointers.h, so include that instead. Signed-off-by: Mathieu Desnoyers --- rculfhash.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rculfhash.c b/rculfhash.c index 517b6a9..2e90d4d 100644 --- a/rculfhash.c +++ b/rculfhash.c @@ -264,9 +264,10 @@ #include #include #include +#include #include "config.h" -#include +#include #include #include #include -- 2.34.1