xref: /csrg-svn/lib/libplot/vt0/frame.c (revision 61414)
148526Sbostic /*-
2*61414Sbostic  * Copyright (c) 1983, 1993
3*61414Sbostic  *	The Regents of the University of California.  All rights reserved.
448526Sbostic  *
548526Sbostic  * %sccs.include.proprietary.c%
648526Sbostic  */
748526Sbostic 
813383Ssam #ifndef lint
9*61414Sbostic static char sccsid[] = "@(#)frame.c	8.1 (Berkeley) 06/04/93";
1048526Sbostic #endif /* not lint */
1113383Ssam 
frame(n)1213383Ssam frame(n)
1313383Ssam {
1413383Ssam 	extern vti;
1513383Ssam 	n=n&0377 | 02000;
1613383Ssam 	write(vti,&n,2);
1713383Ssam }
18