Sign in
◑
Theme
plan9port
/
plan9
/
4192ac1de11674c91bbe390fc8afa187657f9223
/
.
/
src
/
lib9
/
_exits.c
blob: 9affe94879a7e4d575ddc1f3ec4092377bd1e739 [
file
]
#include
<u.h>
#include
<libc.h>
#include
"9proc.h"
void
_exits
(
char
*
s
)
{
_p9uprocdie
();
if
(
s
&&
*
s
)
_exit
(
1
);
_exit
(
0
);
}