aboutsummaryrefslogtreecommitdiff
path: root/src/lib9/_exits.c
blob: 9affe94879a7e4d575ddc1f3ec4092377bd1e739 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <u.h>
#include <libc.h>
#include "9proc.h"

void
_exits(char *s)
{
	_p9uprocdie();

	if(s && *s)
		_exit(1);
	_exit(0);
}