From 0d98f1227110082e9e507ca236458f6c363e25b6 Mon Sep 17 00:00:00 2001 From: cvs2svn Date: Mon, 29 May 1995 13:46:40 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'RELENG_2_0_5_ALPHA'. --- games/xrobots/files/patch-aa | 91 -------------------------------------------- 1 file changed, 91 deletions(-) delete mode 100644 games/xrobots/files/patch-aa (limited to 'games/xrobots/files/patch-aa') diff --git a/games/xrobots/files/patch-aa b/games/xrobots/files/patch-aa deleted file mode 100644 index afffedfb2a37..000000000000 --- a/games/xrobots/files/patch-aa +++ /dev/null @@ -1,91 +0,0 @@ -*** score.c.orig Fri Nov 17 14:37:36 1989 ---- score.c Mon Jan 2 23:09:32 1995 -*************** -*** 56,61 **** ---- 56,62 ---- - - #include /* brings in */ - #include -+ #include - #include "xrobots.h" - - /*----------------------------------------------------------------------*/ -*************** -*** 67,73 **** - - static SCORE scores[MAXSCORES]; - -! void show_scores(), - new_high_score(), - load_scores(), - write_out_scores(); ---- 68,74 ---- - - static SCORE scores[MAXSCORES]; - -! static void show_scores(), - new_high_score(), - load_scores(), - write_out_scores(); -*************** -*** 110,121 **** - #ifndef SYSV - flock(scorefile->_file, LOCK_EX); - #endif -! while( fgets(scores[i].score,6,scorefile) /* get score */ -! && fgets(scores[i].name,26,scorefile) /* get name */ -! && fgetc(scorefile)) /* and newline */ -! { -! i++; -! if( i > MAXSCORES ) break; - } - } - ---- 111,123 ---- - #ifndef SYSV - flock(scorefile->_file, LOCK_EX); - #endif -! for(i = 0; i < MAXSCORES; i++) { -! if(!fgets(scores[i].score, 6, scorefile)) /* get score */ -! break; -! if(!fgets(scores[i].name, 26, scorefile)) /* get name */ -! break; -! if(!fgetc(scorefile)) /* and newline */ -! break; - } - } - -*************** -*** 194,200 **** - - - /*ARGSUSED*/ -! static XtCallbackProc - popdown_callback(w, closure, call_data) - Widget w; - caddr_t closure; ---- 196,202 ---- - - - /*ARGSUSED*/ -! static void - popdown_callback(w, closure, call_data) - Widget w; - caddr_t closure; -*************** -*** 253,259 **** - show_scores() - { - int i; -! char tmp_str[31]; - Arg tmp_arg; - - for(i = 0;i