BSD 4_3_Reno release
[unix-history] / usr / src / lib / libplot / f77plot / box.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
10b8ec65 7#ifndef lint
95f51977 8static char sccsid[] = "@(#)box.c 5.2 (Berkeley) 6/8/85";
b059c7be
DF
9#endif not lint
10
10b8ec65
JK
11box_(x0, y0, x1, y1)
12int *x0, *y0, *x1, *y1;
13{
35725cdf
KM
14 move(*x0, *y0);
15 cont(*x0, *y1);
16 cont(*x1, *y1);
17 cont(*x1, *y0);
18 cont(*x0, *y0);
19 move(*x1, *y1);
10b8ec65 20}