ANDROID: Add missing forward declaration before fopen macro override in raudio

This commit is contained in:
federico.gherardi 2026-02-25 09:50:34 +01:00
parent 9b07621440
commit 708db3d91c

View File

@ -181,6 +181,7 @@ typedef struct tagBITMAPINFOHEADER {
#include <string.h> // Required for: strcmp() [Used in IsFileExtension(), LoadWaveFromMemory(), LoadMusicStreamFromMemory()]
#if defined(PLATFORM_ANDROID)
FILE *android_fopen(const char *fileName, const char *mode);
#define fopen(name, mode) android_fopen(name, mode)
#endif