148525Sbostic /*- 2*61410Sbostic * Copyright (c) 1983, 1993 3*61410Sbostic * The Regents of the University of California. All rights reserved. 448525Sbostic * 548525Sbostic * %sccs.include.proprietary.c% 648525Sbostic */ 748525Sbostic 813363Ssam #ifndef lint 9*61410Sbostic static char sccsid[] = "@(#)close.c 8.1 (Berkeley) 06/04/93"; 1048525Sbostic #endif /* not lint */ 1113363Ssam 1213363Ssam #include <stdio.h> closevt()1313363Ssamclosevt(){ 1413363Ssam closepl(); 1513363Ssam } closepl()1613363Ssamclosepl(){ 1713363Ssam fflush(stdout); 1813363Ssam reset(); 1913363Ssam } 20