home *** CD-ROM | disk | FTP | other *** search
- /* bfinit - Basic File Initialization
-
- Copyright (c) 1985 by JMI Software Consultants, Inc.
- */
- #include "acom.h"
- #include "rrd.h"
-
- VOID bfinit()
- {
- IMPORT RR rdc;
-
- rdc.rr_erase = '\b';
- rdc.rr_kill = '\027';
- rdc.rr_intr = '\3';
- rdc.rr_quit = '\3';
- rdc.rr_eot = '\032';
- SEG(-1.0);
- }
-
- /* bexit(n) will return control to the system.
- If n is 0 the return is successful.
- */
-
- VOID bexit(n)
- INT n;
- {
- exit(!n);
- }