148502Sbostic /*- 2*61325Sbostic * Copyright (c) 1983, 1993 3*61325Sbostic * The Regents of the University of California. All rights reserved. 448502Sbostic * 548502Sbostic * %sccs.include.proprietary.c% 648502Sbostic */ 748502Sbostic 815516Sralph #ifndef lint 9*61325Sbostic static char sccsid[] = "@(#)cont.c 8.1 (Berkeley) 06/04/93"; 1048502Sbostic #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 */ cont(x,y)2115516Sralphcont(x, y) 2215516Sralph int x, y; 2315516Sralph { 2415516Sralph line(curx, cury, x, y); 2515516Sralph } 26