plan9port/src/lib9/_exits.c
2003-09-30 17:47:41 +00:00

9 lines
80 B
C

#include <lib9.h>
void
_exits(char *s)
{
if(s && *s)
_exit(1);
_exit(0);
}