Add copyright
[unix-history] / usr / src / lib / libplot / t4013 / line.c
CommitLineData
b059c7be
DF
1/*
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 */
6
f8479a0e 7#ifndef lint
b059c7be
DF
8static char sccsid[] = "@(#)line.c 5.1 (Berkeley) %G%";
9#endif not lint
f8479a0e
JK
10
11line(x0,y0,x1,y1){
12 move(x0,y0);
13 cont(x1,y1);
14}