Revision: | 1.3 |
Committed: | Fri Nov 5 17:51:17 2004 UTC (20 years, 6 months ago) by greg |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | HEAD |
Changes since 1.2: | +1 -1 lines |
State: | FILE REMOVED |
Log Message: | Removed plotout and lib4014 it depends on |
# | Content |
---|---|
1 | #ifndef lint |
2 | static const char RCSid[] = "$Id: box.c,v 1.2 2003/11/15 02:13:37 schorsch Exp $"; |
3 | #endif |
4 | |
5 | #include "local4014.h" |
6 | #include "lib4014.h" |
7 | |
8 | extern void |
9 | box( |
10 | int x0, |
11 | int y0, |
12 | int x1, |
13 | int y1 |
14 | ) |
15 | { |
16 | move(x0, y0); |
17 | cont(x0, y1); |
18 | cont(x1, y1); |
19 | cont(x1, y0); |
20 | cont(x0, y0); |
21 | move(x1, y1); |
22 | } |