xref: /csrg-svn/lib/libplot/vt0/frame.c (revision 48526)
1*48526Sbostic /*-
2*48526Sbostic  * Copyright (c) 1983 The Regents of the University of California.
3*48526Sbostic  * All rights reserved.
4*48526Sbostic  *
5*48526Sbostic  * %sccs.include.proprietary.c%
6*48526Sbostic  */
7*48526Sbostic 
813383Ssam #ifndef lint
9*48526Sbostic static char sccsid[] = "@(#)frame.c	4.2 (Berkeley) 04/22/91";
10*48526Sbostic #endif /* not lint */
1113383Ssam 
1213383Ssam frame(n)
1313383Ssam {
1413383Ssam 	extern vti;
1513383Ssam 	n=n&0377 | 02000;
1613383Ssam 	write(vti,&n,2);
1713383Ssam }
18