Skip to content

Commit

Permalink
Fix more -Werror issues with obsequi.
Browse files Browse the repository at this point in the history
llvm-svn: 366290
  • Loading branch information
aemerson committed Jul 17, 2019
1 parent 24139ac commit 398b84c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion MultiSource/Applications/obsequi/negamax.c
Original file line number Diff line number Diff line change
Expand Up @@ -305,10 +305,15 @@ search_for_move(char dir, s32bit *row, s32bit *col, u64bit *nodes)
return value;
}

extern s32bit
#ifdef PRINT_DOES_X_WIN_INFO
extern s32bit
does_next_player_win(s32bit next_player, s32bit print);
extern s32bit
does_who_just_moved_win(s32bit who_just_moved, s32bit print);
#else
extern s32bit
does_who_just_moved_win(s32bit who_just_moved);
extern s32bit
does_next_player_win(s32bit next_player);
#endif

Expand Down

0 comments on commit 398b84c

Please sign in to comment.