4 /****************************************************************/
5 /* Mvcur(oldy,oldx,newy,newx) the display cursor to <newy,newx> */
6 /****************************************************************/
8 int mvcur(oldy
, oldx
, newy
, newx
)
14 if ((newy
>= LINES
) || (newx
>= COLS
) || (newy
< 0) || (newx
< 0))
17 _cursvar
.cursrow
= newy
;
18 _cursvar
.curscol
= newx
;