date and time created 85/01/02 20:29:49 by jak
[unix-history] / usr / src / lib / libplot / bitgraph / close.c
#ifndef lint
static char sccsid[] = "@(#)close.c 4.1 (Berkeley) %G%";
#endif
#include <signal.h>
#include "bg.h"
closepl()
{
/* recieve interupts */
signal(SIGINT, SIG_IGN);
/* exit graphics mode */
putchar( ESC );
printf("[H");
exit(0);
}