add confSORT_QUEUE_BY_HOST and confBROKEN_SMTP_PEERS
[unix-history] / usr / src / lib / libplot / f77plot / box.c
CommitLineData
de207c0f 1/*-
d51a7d28
KB
2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. All rights reserved.
de207c0f
KB
4 *
5 * %sccs.include.proprietary.c%
b059c7be
DF
6 */
7
10b8ec65 8#ifndef lint
d51a7d28 9static char sccsid[] = "@(#)box.c 8.1 (Berkeley) %G%";
de207c0f 10#endif /* not lint */
b059c7be 11
10b8ec65
JK
12box_(x0, y0, x1, y1)
13int *x0, *y0, *x1, *y1;
14{
35725cdf
KM
15 move(*x0, *y0);
16 cont(*x0, *y1);
17 cont(*x1, *y1);
18 cont(*x1, *y0);
19 cont(*x0, *y0);
20 move(*x1, *y1);
10b8ec65 21}