xref: /csrg-svn/lib/libplot/t300s/close.c (revision 48522)
1*48522Sbostic /*-
2*48522Sbostic  * Copyright (c) 1983 The Regents of the University of California.
3*48522Sbostic  * All rights reserved.
4*48522Sbostic  *
5*48522Sbostic  * %sccs.include.proprietary.c%
6*48522Sbostic  */
7*48522Sbostic 
813329Ssam #ifndef lint
9*48522Sbostic static char sccsid[] = "@(#)close.c	4.2 (Berkeley) 04/22/91";
10*48522Sbostic #endif /* not lint */
1113329Ssam 
1213329Ssam #include <stdio.h>
1313329Ssam closevt(){
1413329Ssam 	closepl();
1513329Ssam }
1613329Ssam closepl(){
1713329Ssam 	fflush(stdout);
1813329Ssam 	reset();
1913329Ssam }
20