From 48dbb5490971afb1a29023fafd75d2989c5d8ac2 Mon Sep 17 00:00:00 2001 From: antirez Date: Tue, 27 Sep 2016 00:29:47 +0200 Subject: [PATCH] debug.c: include dlfcn.h regardless of BACKTRACE support. --- src/debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debug.c b/src/debug.c index e00526577..d48caedcc 100644 --- a/src/debug.c +++ b/src/debug.c @@ -33,6 +33,7 @@ #include #include +#include #ifdef HAVE_BACKTRACE #include @@ -40,7 +41,6 @@ #include #include "bio.h" #include -#include #endif /* HAVE_BACKTRACE */ #ifdef __CYGWIN__