1*48502Sbostic /*- 2*48502Sbostic * Copyright (c) 1983 The Regents of the University of California. 3*48502Sbostic * All rights reserved. 4*48502Sbostic * 5*48502Sbostic * %sccs.include.proprietary.c% 6*48502Sbostic */ 7*48502Sbostic 815516Sralph #ifndef lint 9*48502Sbostic static char sccsid[] = "@(#)cont.c 5.2 (Berkeley) 04/22/91"; 10*48502Sbostic #endif /* not lint */ 1115516Sralph 1215516Sralph #include "aed.h" 1315516Sralph 1415516Sralph /*--------------------------------------------------------- 1515516Sralph * Cont plots a line between (curx, cury) and (x, y). 1615516Sralph * 1715516Sralph * Results: None. 1815516Sralph * Side Effects: As above. 1915516Sralph *--------------------------------------------------------- 2015516Sralph */ 2115516Sralph cont(x, y) 2215516Sralph int x, y; 2315516Sralph { 2415516Sralph line(curx, cury, x, y); 2515516Sralph } 26