home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / gnu / g__lib / test.she < prev    next >
Text File  |  1993-07-23  |  212b  |  16 lines

  1. #include <Incremental.h>
  2. DECLARE_INIT_FUNCTION (init_1);
  3.  
  4. #include "test0.h"
  5.  
  6. static ofile of ("/dev/tty");
  7.  
  8. static void
  9. init_1 ()
  10. {
  11.   of << "forking shell...\n";
  12.   system ("csh");
  13.   of << "shell exiting...";
  14. }
  15.  
  16.