shithub: purgatorio

ref: 15b2a406cc0e11377cee12b5a112c003f7250a7f
dir: purgatorio/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);
}