xref: /csrg-svn/lib/libplot/aed/cont.c (revision 15516)
1 #ifndef lint
2 static char sccsid[] = "@(#)cont.c	4.1 (Berkeley) 11/11/83";
3 #endif
4 
5 #include "aed.h"
6 
7 /*---------------------------------------------------------
8  *	Cont plots a line between (curx, cury) and (x, y).
9  *
10  *	Results:	None.
11  *	Side Effects:	As above.
12  *---------------------------------------------------------
13  */
14 cont(x, y)
15 int x, y;
16 {
17     line(curx, cury, x, y);
18 }
19