Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/games/hangman/getguess.c,v retrieving revision 1.1.1.1 retrieving revision 1.1.1.2 diff -u -p -r1.1.1.1 -r1.1.1.2 --- src/games/hangman/getguess.c 1993/03/21 09:45:37 1.1.1.1 +++ src/games/hangman/getguess.c 1995/03/21 15:58:08 1.1.1.2 @@ -1,6 +1,6 @@ /* - * Copyright (c) 1983 Regents of the University of California. - * All rights reserved. + * Copyright (c) 1983, 1993 + * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -32,10 +32,11 @@ */ #ifndef lint -static char sccsid[] = "@(#)getguess.c 5.4 (Berkeley) 6/1/90"; +static char sccsid[] = "@(#)getguess.c 8.1 (Berkeley) 5/31/93"; #endif /* not lint */ -# include "hangman.h" +#include +#include "hangman.h" /* * getguess: @@ -99,7 +100,7 @@ readch() } else if (ch == CTRL('L')) { wrefresh(curscr); - mvcur(0, 0, curscr->_cury, curscr->_curx); + mvcur(0, 0, curscr->cury, curscr->curx); } else return ch;