xref: /csrg-svn/lib/libplot/t4013/line.c (revision 22619)
1*22619Sdist /*
2*22619Sdist  * Copyright (c) 1980 Regents of the University of California.
3*22619Sdist  * All rights reserved.  The Berkeley software License Agreement
4*22619Sdist  * specifies the terms and conditions for redistribution.
5*22619Sdist  */
6*22619Sdist 
717616Sjak #ifndef lint
8*22619Sdist static char sccsid[] = "@(#)line.c	5.1 (Berkeley) 06/07/85";
9*22619Sdist #endif not lint
1017616Sjak 
1117616Sjak line(x0,y0,x1,y1){
1217616Sjak 	move(x0,y0);
1317616Sjak 	cont(x1,y1);
1417616Sjak }
15