xref: /csrg-svn/lib/libplot/t300s/close.c (revision 61403)
148522Sbostic /*-
2*61403Sbostic  * Copyright (c) 1983, 1993
3*61403Sbostic  *	The Regents of the University of California.  All rights reserved.
448522Sbostic  *
548522Sbostic  * %sccs.include.proprietary.c%
648522Sbostic  */
748522Sbostic 
813329Ssam #ifndef lint
9*61403Sbostic static char sccsid[] = "@(#)close.c	8.1 (Berkeley) 06/04/93";
1048522Sbostic #endif /* not lint */
1113329Ssam 
1213329Ssam #include <stdio.h>
closevt()1313329Ssam closevt(){
1413329Ssam 	closepl();
1513329Ssam }
closepl()1613329Ssam closepl(){
1713329Ssam 	fflush(stdout);
1813329Ssam 	reset();
1913329Ssam }
20