add exitcode

This commit is contained in:
rsc 2006-02-12 19:05:12 +00:00
parent 4940b55216
commit d0d15c12d4
2 changed files with 10 additions and 0 deletions

9
src/lib9/exitcode.c Normal file
View file

@ -0,0 +1,9 @@
#include <u.h>
#include <libc.h>
int
exitcode(char *s)
{
return 1;
}