xref: /original-bsd/lib/libplot/t4013/line.c (revision b0637fa1)
19d3248a0Sbostic /*-
2*b0637fa1Sbostic  * Copyright (c) 1985, 1993
3*b0637fa1Sbostic  *	The Regents of the University of California.  All rights reserved.
49d3248a0Sbostic  *
59d3248a0Sbostic  * %sccs.include.proprietary.c%
6f72bf464Sdist  */
7f72bf464Sdist 
8d2de92feSjak #ifndef lint
9*b0637fa1Sbostic static char sccsid[] = "@(#)line.c	8.1 (Berkeley) 06/04/93";
109d3248a0Sbostic #endif /* not lint */
11d2de92feSjak 
line(x0,y0,x1,y1)12d2de92feSjak line(x0,y0,x1,y1){
13d2de92feSjak 	move(x0,y0);
14d2de92feSjak 	cont(x1,y1);
15d2de92feSjak }
16