Skip to content

Commit 4055ae3

Browse files
committed
fix: add limits.h include
1 parent 998b937 commit 4055ae3

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

libs/game/methods.c

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11

22
#include "./methods.h"
33

4+
#include <limits.h>
45
#include <stdio.h>
56

67
#include "../patterns/main.h"

src/sdl/methods.c

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#endif
99

1010
#include <SDL.h>
11+
#include <limits.h>
1112
#include <stdio.h>
1213

1314
int startGameBySDL(TGame* pGame, int maxGeneration, int delayBetweenGenerations) {

0 commit comments

Comments
 (0)