code: purgatorio

ref: a39ae178fcc4387fe63efea4d15b34d52f4a13de
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);
}