Fix warning: strict prototypes (#14992)

clang: a function declaration without a prototype is deprecated in all versions of C [-Wstrict-prototypes]

(cherry picked from commit 4f183506f6)
This commit is contained in:
RaceTheMaSe
2026-02-07 16:38:59 +01:00
committed by Ozkan Sezer
parent a7e5870b88
commit 9363ecc764
7 changed files with 11 additions and 11 deletions

View File

@@ -78,7 +78,7 @@ static void QuitGtk(void)
libgtk = NULL;
}
static bool IsGtkInit()
static bool IsGtkInit(void)
{
return libgdk != NULL && libgtk != NULL;
}