home *** CD-ROM | disk | FTP | other *** search
- /* $Header: E:\SRC\UUPC\RN\RCS/FINAL.H 1.1 1992/11/21 06:14:58 ahd Exp $
- *
- * $Log: FINAL.H $
- * Revision 1.1 1992/11/21 06:14:58 ahd
- * Initial
- *
- *
- * Rev 1.0 18 Nov 1990 0:22:48
- * Initial revision.
- * Revision 4.3 85/05/01 11:38:17 lwall
- * Baseline for release with 4.3bsd.
- *
- */
-
- /* cleanup status for fast exits */
-
- EXT bool panic INIT(FALSE); /* we got hung up or something-- */
- /* so leave tty alone */
- EXT bool rc_changed INIT(FALSE); /* need we rewrite .newsrc? */
- EXT bool doing_ng INIT(FALSE); /* do we need to reconstitute */
- /* current rc line? */
-
- EXT char int_count INIT(0); /* how many interrupts we've had */
-
- /* signal catching routines */
-
- #ifdef msdos
- void int_catcher();
- void sig_catcher();
- #else
- int int_catcher();
- int sig_catcher();
- #endif
-
- #ifdef SIGTSTP
- int stop_catcher();
- int cont_catcher();
- #endif
-
- void final_init();
- void finalize();
-