From 5b8b24c0c53288a94bfce7cc6e7eb21a9eee3f4a Mon Sep 17 00:00:00 2001 From: Nikolas Date: Sat, 22 Jan 2022 17:25:53 +0100 Subject: [PATCH] Fix GetApplicationDirectory on macOS (#2304) Previously failed to build with an implicit declaration of `_NSGetExecutablePath`. --- src/rcore.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rcore.c b/src/rcore.c index eed636675..70cc350bb 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -173,6 +173,7 @@ #include #elif defined(__APPLE__) #include + #include #endif // OSs #endif // PLATFORM_DESKTOP