From 94c40fb3c919e3b809612e4db21fbda608b940c3 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Wed, 17 Jul 2024 11:00:25 -0700 Subject: [PATCH] Fixed warning: no previous prototype for function 'SDL_InitFilesystem' --- src/filesystem/SDL_filesystem.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/filesystem/SDL_filesystem.c b/src/filesystem/SDL_filesystem.c index bc3222a64e..03b1955ed1 100644 --- a/src/filesystem/SDL_filesystem.c +++ b/src/filesystem/SDL_filesystem.c @@ -20,6 +20,8 @@ */ #include "SDL_internal.h" + +#include "SDL_filesystem_c.h" #include "SDL_sysfilesystem.h" #include "../stdlib/SDL_sysstdlib.h"