From 7852041e784688bdef133137779b687a8f46ff14 Mon Sep 17 00:00:00 2001 From: bkaradzic Date: Sat, 13 Jul 2013 23:15:34 -0700 Subject: [PATCH] Fixed dlsym. --- include/bx/os.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bx/os.h b/include/bx/os.h index d63cc51..a1211c1 100644 --- a/include/bx/os.h +++ b/include/bx/os.h @@ -65,7 +65,7 @@ namespace bx #if BX_PLATFORM_WINDOWS return (void*)GetProcAddress( (HMODULE)_handle, _symbol); #else - return dlsym(_handle, _symbol); + return ::dlsym(_handle, _symbol); #endif // BX_PLATFORM_ }