1*19974Sdist /* 2*19974Sdist * Copyright (c) 1980 Regents of the University of California. 3*19974Sdist * All rights reserved. The Berkeley software License Agreement 4*19974Sdist * specifies the terms and conditions for redistribution. 5*19974Sdist */ 6*19974Sdist 715502Sralph #ifndef lint 8*19974Sdist static char sccsid[] = "@(#)cont.c 5.1 (Berkeley) 05/07/85"; 9*19974Sdist #endif not lint 1015502Sralph 1115502Sralph #include "gigi.h" 1215502Sralph 1315502Sralph cont(xi,yi) 1415502Sralph int xi,yi; 1515502Sralph { 1615502Sralph currentx = xsc(xi); 1715502Sralph currenty = ysc(yi); 1815502Sralph printf("V[%d,%d]",currentx, currenty); 1915502Sralph } 20