xref: /csrg-svn/lib/libplot/t4014/line.c (revision 61408)
148524Sbostic /*-
2*61408Sbostic  * Copyright (c) 1983, 1993
3*61408Sbostic  *	The Regents of the University of California.  All rights reserved.
448524Sbostic  *
548524Sbostic  * %sccs.include.proprietary.c%
648524Sbostic  */
748524Sbostic 
813349Ssam #ifndef lint
9*61408Sbostic static char sccsid[] = "@(#)line.c	8.1 (Berkeley) 06/04/93";
1048524Sbostic #endif /* not lint */
1113349Ssam 
line(x0,y0,x1,y1)1213349Ssam line(x0,y0,x1,y1){
1313349Ssam 	move(x0,y0);
1413349Ssam 	cont(x1,y1);
1513349Ssam }
16