xref: /csrg-svn/lib/libplot/t4013/line.c (revision 48523)
1*48523Sbostic /*-
2*48523Sbostic  * Copyright (c) 1985 The Regents of the University of California.
3*48523Sbostic  * All rights reserved.
4*48523Sbostic  *
5*48523Sbostic  * %sccs.include.proprietary.c%
622619Sdist  */
722619Sdist 
817616Sjak #ifndef lint
9*48523Sbostic static char sccsid[] = "@(#)line.c	5.2 (Berkeley) 04/22/91";
10*48523Sbostic #endif /* not lint */
1117616Sjak 
1217616Sjak line(x0,y0,x1,y1){
1317616Sjak 	move(x0,y0);
1417616Sjak 	cont(x1,y1);
1517616Sjak }
16