More fix warnings about static function and prototype

This commit is contained in:
Sylvain
2023-03-08 16:12:45 +01:00
committed by Sylvain Becker
parent 16bb6a0b3d
commit c963f02571
38 changed files with 262 additions and 257 deletions

View File

@@ -25,8 +25,7 @@ static SDL_AudioSpec spec;
static SDL_AudioDeviceID devid_in = 0;
static SDL_AudioDeviceID devid_out = 0;
static void
loop()
static void loop(void)
{
SDL_bool please_quit = SDL_FALSE;
SDL_Event e;
@@ -164,5 +163,5 @@ int main(int argc, char **argv)
}
#endif
return 0;
/* return 0; */
}