home *** CD-ROM | disk | FTP | other *** search
- /* $Header: final.h,v 4.3.3.2 91/01/16 02:38:16 davison Trn $
- *
- * $Log: final.h,v $
- * Revision 4.3.3.2 91/01/16 02:38:16 davison
- * Added optional prototyping.
- *
- * Revision 4.3.3.1 90/06/20 22:37:04 davison
- * Initial Trn Release
- *
- * 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 */
-
- EXT bool clear_on_stop INIT(FALSE); /* set when handling the stop signal */
- /* would leave the screen a mess */
-
- /* signal catching routines */
-
- SIGRET int_catcher ANSI((void));
- SIGRET sig_catcher ANSI((int));
- #ifdef SIGTSTP
- SIGRET stop_catcher ANSI((int));
- #endif
-
- void final_init ANSI((void));
- void finalize ANSI((int));
-