xref: /original-bsd/lib/libplot/t4014/line.c (revision 96247f77)
180eef826Sbostic /*-
2*96247f77Sbostic  * Copyright (c) 1983, 1993
3*96247f77Sbostic  *	The Regents of the University of California.  All rights reserved.
480eef826Sbostic  *
580eef826Sbostic  * %sccs.include.proprietary.c%
680eef826Sbostic  */
780eef826Sbostic 
8908f856cSsam #ifndef lint
9*96247f77Sbostic static char sccsid[] = "@(#)line.c	8.1 (Berkeley) 06/04/93";
1080eef826Sbostic #endif /* not lint */
11908f856cSsam 
line(x0,y0,x1,y1)12908f856cSsam line(x0,y0,x1,y1){
13908f856cSsam 	move(x0,y0);
14908f856cSsam 	cont(x1,y1);
15908f856cSsam }
16