xref: /csrg-svn/lib/libplot/plot/line.c (revision 13403)
1*13403Ssam #ifndef lint
2*13403Ssam static char sccsid[] = "@(#)line.c	4.1 (Berkeley) 06/27/83";
3*13403Ssam #endif
4*13403Ssam 
5*13403Ssam #include <stdio.h>
6*13403Ssam line(x0,y0,x1,y1){
7*13403Ssam 	putc('l',stdout);
8*13403Ssam 	putsi(x0);
9*13403Ssam 	putsi(y0);
10*13403Ssam 	putsi(x1);
11*13403Ssam 	putsi(y1);
12*13403Ssam }
13