added new devices.
[unix-history] / usr / src / lib / libplot / aed / cont.c
CommitLineData
8fb4e5a7
RC
1#ifndef lint
2static char sccsid[] = "@(#)cont.c 4.1 (Berkeley) %G%";
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 */
14cont(x, y)
15int x, y;
16{
17 line(curx, cury, x, y);
18}