1*48518Sbostic /*- 2*48518Sbostic * Copyright (c) 1980 The Regents of the University of California. 3*48518Sbostic * All rights reserved. 4*48518Sbostic * 5*48518Sbostic * %sccs.include.proprietary.c% 619978Sdist */ 719978Sdist 815467Sralph #ifndef lint 9*48518Sbostic static char sccsid[] = "@(#)cont.c 5.2 (Berkeley) 04/22/91"; 10*48518Sbostic #endif /* not lint */ 1115467Sralph 1215467Sralph #include "hp7221.h" 1315467Sralph 1415467Sralph cont(xi,yi) 1515467Sralph int xi,yi; 1615467Sralph { 1715467Sralph currentx = scaleX(xi); 1815467Sralph currenty = scaleY(yi); 1915467Sralph putchar( 'q' ); 2015467Sralph putMBP( currentx, currenty ); 2115467Sralph } 22