home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ARM Club 1
/
ARM_CLUB_CD.iso
/
contents
/
apps
/
program
/
k
/
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);
}