xref: /csrg-svn/lib/libplot/plot/line.c (revision 61399)
148520Sbostic /*-
2*61399Sbostic  * Copyright (c) 1983, 1993
3*61399Sbostic  *	The Regents of the University of California.  All rights reserved.
448520Sbostic  *
548520Sbostic  * %sccs.include.proprietary.c%
648520Sbostic  */
748520Sbostic 
813403Ssam #ifndef lint
9*61399Sbostic static char sccsid[] = "@(#)line.c	8.1 (Berkeley) 06/04/93";
1048520Sbostic #endif /* not lint */
1113403Ssam 
1213403Ssam #include <stdio.h>
line(x0,y0,x1,y1)1313403Ssam line(x0,y0,x1,y1){
1413403Ssam 	putc('l',stdout);
1513403Ssam 	putsi(x0);
1613403Ssam 	putsi(y0);
1713403Ssam 	putsi(x1);
1813403Ssam 	putsi(y1);
1913403Ssam }
20