Small tweaks to make things build again.

This commit is contained in:
rsc 2004-02-29 22:42:33 +00:00
parent 91c13e54b5
commit f063dad96e
18 changed files with 43 additions and 48 deletions

View file

@ -1,6 +1,7 @@
#include <u.h>
#include <libc.h>
#include <plumb.h>
#include <thread.h>
char *plumbfile = nil;
Plumbmsg m;
@ -36,7 +37,7 @@ gather(void)
}
void
main(int argc, char *argv[])
threadmain(int argc, char *argv[])
{
char buf[1024], *p;
int fd, i, input;
@ -115,5 +116,5 @@ main(int argc, char *argv[])
exits("error");
}
}
exits(nil);
threadexitsall(nil);
}