xref: /csrg-svn/lib/libplot/t300s/close.c (revision 13329)
1*13329Ssam #ifndef lint
2*13329Ssam static char sccsid[] = "@(#)close.c	4.1 (Berkeley) 06/27/83";
3*13329Ssam #endif
4*13329Ssam 
5*13329Ssam #include <stdio.h>
6*13329Ssam closevt(){
7*13329Ssam 	closepl();
8*13329Ssam }
9*13329Ssam closepl(){
10*13329Ssam 	fflush(stdout);
11*13329Ssam 	reset();
12*13329Ssam }
13