comparison game.c @ 65:3e7db5ef4691

*** empty log message ***
author gongo
date Thu, 09 Nov 2006 03:16:22 +0000
parents 1cccf6d964b7
children 8edae89a3877
comparison
equal deleted inserted replaced
64:e6a6dde71701 65:3e7db5ef4691
17 extern Bool padCheck(); 17 extern Bool padCheck();
18 /* linda.c */ 18 /* linda.c */
19 #ifdef LINDA 19 #ifdef LINDA
20 extern int linda_init(); 20 extern int linda_init();
21 #else 21 #else
22 #define linda_init linda_init0 22 #define linda_init 1
23 #endif 23 #endif
24 24
25 Game game; 25 Game game;
26
27 static Bool
28 ret()
29 {
30 return TRUE;
31 }
32
33 static int
34 linda_init0()
35 {
36 game.linda_exec = &ret;
37 return 1;
38 }
39 26
40 void 27 void
41 game_main() 28 game_main()
42 { 29 {
43 Bool flg = TRUE; 30 Bool flg = TRUE;