xref: /csrg-svn/lib/libplot/dumb/arc.c (revision 19971)
1*19971Sdist /*
2*19971Sdist  * Copyright (c) 1980 Regents of the University of California.
3*19971Sdist  * All rights reserved.  The Berkeley software License Agreement
4*19971Sdist  * specifies the terms and conditions for redistribution.
5*19971Sdist  */
6*19971Sdist 
715427Sralph #ifndef lint
8*19971Sdist static char sccsid[] = "@(#)arc.c	5.1 (Berkeley) 05/07/85";
9*19971Sdist #endif not lint
1015427Sralph 
1115427Sralph #include "dumb.h"
1215427Sralph 
1315427Sralph arc(xc,yc,xbeg,ybeg,xend,yend)
1415427Sralph int xc,yc,xbeg,ybeg,xend,yend;
1515427Sralph {
1615427Sralph }
17