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