blob: 062de7064c719ff8fa869168c473a046800bc6e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
https://bugs.gentoo.org/944252
--- a/gnake.c
+++ b/gnake.c
@@ -64,14 +64,14 @@ typedef struct {
void getOptions(int argc, char *argv[]);
void DrawWindow();
void Init();
-void Step();
+void Step(int a);
void Draw();
void End();
coord getRandEmptyCell(int mandatory);
void createApple(int i);
-void Resize();
+void Resize(int a);
char *TheGameName = "Gnake 0.94b";
@@ -349,7 +349,7 @@ void CPUMove(int n) {
Snk[n].Dir = d;
}
-void Step() {
+void Step(int a) {
node *Last;
int n, c;
@@ -716,7 +716,7 @@ void Init() {
setitimer(ITIMER_REAL, &Timer, NULL);
}
-void Resize() {
+void Resize(int a) {
FILE *p;
int l, c;
|