shithub: purgatorio

ref: 76b565d8b219c8db94a882e93725b4ab735414de
dir: /lib9/exits.c/

View raw version
#include "lib9.h"

void
exits(char *s)
{
	if(s == 0 || *s == 0)
		exit(0);
	exit(1);
}

void
_exits(char *s)
{
	if(s == 0 || *s == 0)
		_exit(0);
	_exit(1);
}