home *** CD-ROM | disk | FTP | other *** search
- /* RUN(file) - terminate current program, execute new file
-
- Copyright (c) 1983, 1984 by JMI Software Consultants, Inc.
- */
- #include "acom.h"
-
- VOID RUN(file, type)
- BTEXT *file;
- INT type;
- {
- IMPORT BOOL run_flag;
-
- if (type < 0)
- {
- BCLOSE(0);
- run_flag = YES;
- }
- CHAIN(file);
- }