home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Datafile PD-CD 5
/
DATAFILE_PDCD5.iso
/
utilities
/
p
/
psh
/
c
/
exit
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-05-08
|
233 b
|
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);
}