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