home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume8 / gnuplot1.10A / part07 / help / catch.c < prev    next >
C/C++ Source or Header  |  1989-09-09  |  460b  |  34 lines

  1. /*
  2.  * Program    : help
  3.  * Module    : catch.c
  4.  * Programmer    : R. Stolfa
  5.  *
  6.  * Purpose :    To handle all user signals.
  7.  *
  8.  * Modification History:
  9.  *   08/31/87    Created
  10.  */
  11.  
  12. #include    "global.h"
  13.  
  14. #ifdef __TURBOC__
  15.   void catch()
  16. #else
  17.   int    catch()
  18. #endif
  19. {
  20.     /*
  21.      * Free the in memory lists to keep user memory from
  22.      * growing.
  23.      */
  24.     free_list (PRINT);
  25.     free_list (ACRON);
  26.     free_list (TOPIC);
  27.  
  28.     /*
  29.      * ...Neat up the screen and exit
  30.      */
  31.     putchar ('\n');
  32.     exit (0);
  33. }
  34.