148504Sbostic /*- 2*61330Sbostic * Copyright (c) 1980, 1993 3*61330Sbostic * The Regents of the University of California. All rights reserved. 448504Sbostic * 548504Sbostic * %sccs.include.proprietary.c% 619851Sdist */ 719851Sdist 815414Sralph #ifndef lint 9*61330Sbostic static char sccsid[] = "@(#)cont.c 8.1 (Berkeley) 06/04/93"; 1048504Sbostic #endif /* not lint */ 1115414Sralph 1215414Sralph #include "bg.h" 1315414Sralph cont(xi,yi)1415414Sralphcont(xi,yi) 1515414Sralph int xi,yi; 1615414Sralph { 1715414Sralph currentx = scaleX(xi); 1815414Sralph currenty = scaleY(yi); 1915414Sralph putchar( ESC ); 2015414Sralph printf(":%d;%dd", currentx, currenty); 2115414Sralph } 22