diff options
Diffstat (limited to 'games/xataxx/files/patch-nubot.c')
-rw-r--r-- | games/xataxx/files/patch-nubot.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/games/xataxx/files/patch-nubot.c b/games/xataxx/files/patch-nubot.c new file mode 100644 index 000000000000..d39a5c7eea49 --- /dev/null +++ b/games/xataxx/files/patch-nubot.c @@ -0,0 +1,27 @@ +--- nubot.c.orig ++++ nubot.c +@@ -1,4 +1,6 @@ + #include <stdio.h> ++#include <stdlib.h> ++#include <strings.h> + #include <X11/Xlib.h> + #include "struct.h" + +@@ -172,7 +174,7 @@ + + list_moves(player, board, movel); + +- if (movel[0].ox==(-1)) return; /* there are no legal moves */ ++ if (movel[0].ox==(-1)) return(0); /* there are no legal moves */ + + if (botlevel==0) { + for (ix=0; movel[ix].ox!=(-1); ix++); +@@ -180,7 +182,7 @@ + best = &(movel[ix]); + + move_piece(best->ox,best->oy,best->nx,best->ny,player); +- return; ++ return(0); + }; + + for (ix=0; movel[ix].ox!=(-1); ix++) { |