From 8d7ee70e7d1e7719e64a14c0e57095750e939783 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Wed, 8 Oct 2025 05:27:50 +0500 Subject: [PATCH] engine: platform: android: include dlfcn.h for Android's LoadLibrary implementation --- engine/platform/android/lib_android.c | 1 + 1 file changed, 1 insertion(+) diff --git a/engine/platform/android/lib_android.c b/engine/platform/android/lib_android.c index 939e25d6..74730877 100644 --- a/engine/platform/android/lib_android.c +++ b/engine/platform/android/lib_android.c @@ -12,6 +12,7 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. */ +#include #include "common.h" #include "library.h" #include "filesystem.h"