Blob


1 #include <u.h>
2 #include <libc.h>
4 void
5 _exits(char *s)
6 {
7 if(s && *s)
8 _exit(1);
9 _exit(0);
10 }