From: Sam Leffler Date: Tue, 28 Jun 1983 05:26:08 +0000 (-0800) Subject: date and time created 83/06/27 14:26:08 by sam X-Git-Tag: BSD-4_2-Snapshot-Development~1247 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/f3a236cf320466d8b8b0b813c00fb31720046c17 date and time created 83/06/27 14:26:08 by sam SCCS-vsn: lib/libplot/vt0/circle.c 4.1 --- diff --git a/usr/src/lib/libplot/vt0/circle.c b/usr/src/lib/libplot/vt0/circle.c new file mode 100644 index 0000000000..f13cab016f --- /dev/null +++ b/usr/src/lib/libplot/vt0/circle.c @@ -0,0 +1,11 @@ +#ifndef lint +static char sccsid[] = "@(#)circle.c 4.1 (Berkeley) %G%"; +#endif + +extern vti; +circle(x,y,r){ + char c; + c = 5; + write(vti,&c,1); + write(vti,&x,6); +}