home *** CD-ROM | disk | FTP | other *** search
- *** libcurses42/initscr.c Thu Nov 17 11:03:00 1983
- --- libcurses/initscr.c Sun Jul 21 17:59:02 1985
- ***************
- *** 15,16
- reg char *sp;
- int tstp();
-
- --- 15,17 -----
- reg char *sp;
- + int (*oldtstp)(); /* Ron Wessels, uthub.149, May 1984 */
- int tstp();
- ***************
- *** 41,43
- # ifdef SIGTSTP
- ! signal(SIGTSTP, tstp);
- # endif
-
- --- 42,45 -----
- # ifdef SIGTSTP
- ! if ((oldtstp = signal(SIGTSTP, tstp)) != SIG_DFL)
- ! (void) signal(SIGTSTP, oldtstp);
- # endif
-