Fix warnings about static function and prototype

This commit is contained in:
Sylvain
2023-03-08 11:40:07 +01:00
committed by Sylvain Becker
parent 61309b4382
commit 16bb6a0b3d
30 changed files with 137 additions and 142 deletions

View File

@@ -33,8 +33,8 @@ typedef struct
int scale_direction;
} DrawState;
DrawState *drawstates;
int done;
static DrawState *drawstates;
static int done;
/* Call this instead of exit(), so we can clean up SDL: atexit() is evil. */
static void
@@ -44,7 +44,7 @@ quit(int rc)
exit(rc);
}
void Draw(DrawState *s)
static void Draw(DrawState *s)
{
SDL_Rect viewport;
SDL_Texture *target;
@@ -86,7 +86,7 @@ void Draw(DrawState *s)
/* SDL_Delay(10); */
}
void loop()
static void loop(void)
{
int i;
SDL_Event event;