home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / utilities / utilsp / psh / c / exit < prev    next >
Text File  |  1995-05-08  |  233b  |  19 lines

  1. /* vi:tabstop=4:shiftwidth=4:smartindent
  2.  *
  3.  * exit.c - Exit returning status from the shell
  4.  *
  5.  */
  6.  
  7. #include <stdlib.h>
  8. #include "psh.h"
  9.  
  10. int sh_exit(int argc, char **argv)
  11. {
  12.     if (argc > 1)
  13.     {
  14.         exit(atoi(argv[1]));
  15.     }
  16.     exit(0);
  17. }
  18.  
  19.