home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Moscow ML 1.31 / source code / mosml / src / config / auto-aux / sighandler.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-03  |  100 b   |  9 lines  |  [TEXT/R*ch]

  1. #include <signal.h>
  2.  
  3. main()
  4. {
  5.   SIGRETURN (*old)();
  6.   old = signal(SIGQUIT, SIG_DFL);
  7.   return 0;
  8. }
  9.