home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / Moscow ML 1.42 / src / config / auto-aux / sighandler.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-18  |  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.