date and time created 83/11/10 16:04:16 by ralph
[unix-history] / usr / src / lib / libplot / gigi / close.c
#ifndef lint
static char sccsid[] = "@(#)close.c 4.1 (Berkeley) %G%";
#endif
#include <signal.h>
#include "gigi.h"
closepl()
{
/* recieve interupts */
signal(SIGINT, SIG_IGN);
/* exit graphics mode */
putchar( ESC );
putchar('\\');
exit(0);
}