home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Datafile PD-CD 4
/
DATAFILE_PDCD4.iso
/
utilities
/
utilsp
/
psh
/
c
/
exit
< prev
next >
Wrap
Text File
|
1995-05-08
|
233b
|
19 lines
/* vi:tabstop=4:shiftwidth=4:smartindent
*
* exit.c - Exit returning status from the shell
*
*/
#include <stdlib.h>
#include "psh.h"
int sh_exit(int argc, char **argv)
{
if (argc > 1)
{
exit(atoi(argv[1]));
}
exit(0);
}