Blob


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