xref: /csrg-svn/lib/libplot/imagen/cont.c (revision 24992)
1*24992Ssam /*
2*24992Ssam  * Copyright (c) 1985 Regents of the University of California.
3*24992Ssam  * All rights reserved.  The Berkeley software License Agreement
4*24992Ssam  * specifies the terms and conditions for redistribution.
5*24992Ssam  */
6*24992Ssam 
7*24992Ssam #ifndef lint
8*24992Ssam static char sccsid[] = "@(#)cont.c	5.1 (Berkeley) 09/21/85";
9*24992Ssam #endif not lint
10*24992Ssam 
11*24992Ssam #include <stdio.h>
12*24992Ssam #include "imp.h"
13*24992Ssam 
14*24992Ssam cont(x,y){
15*24992Ssam 	line(imPx, imPy, x, y);
16*24992Ssam 
17*24992Ssam }
18