From a350c5265ac419e35ea9ffd981850b46d5219c5c Mon Sep 17 00:00:00 2001 From: Kiran S J Date: Thu, 30 Apr 2015 12:30:28 +0530 Subject: [PATCH] Fix compilation error when in dlfcn.h When dlfcn.h is included from a C++ file causes a compilation error due to missing '{'. --- lib/roken/dlfcn.hin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/roken/dlfcn.hin b/lib/roken/dlfcn.hin index dfa03448a..cc93bf366 100644 --- a/lib/roken/dlfcn.hin +++ b/lib/roken/dlfcn.hin @@ -51,7 +51,7 @@ typedef int (__stdcall *DLSYM_RET_TYPE)(); #endif #ifdef __cplusplus -extern "C" +extern "C" { #endif /* Implementation based on -- 2.11.4.GIT