This commit is contained in:
rsc 2004-04-21 04:50:23 +00:00
parent 868600f21e
commit f928ea8571

14
src/lib9/fork.c Normal file
View file

@ -0,0 +1,14 @@
#include <u.h>
#include <libc.h>
#include "9proc.h"
#undef fork
int
p9fork(void)
{
int pid;
pid = fork();
_p9uproc(0);
return pid;
}