home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
misc
/
volume8
/
gnuplot1.10A
/
part07
/
help
/
catch.c
< prev
next >
Wrap
C/C++ Source or Header
|
1989-09-09
|
460b
|
34 lines
/*
* Program : help
* Module : catch.c
* Programmer : R. Stolfa
*
* Purpose : To handle all user signals.
*
* Modification History:
* 08/31/87 Created
*/
#include "global.h"
#ifdef __TURBOC__
void catch()
#else
int catch()
#endif
{
/*
* Free the in memory lists to keep user memory from
* growing.
*/
free_list (PRINT);
free_list (ACRON);
free_list (TOPIC);
/*
* ...Neat up the screen and exit
*/
putchar ('\n');
exit (0);
}