15 lines
139 B
C
15 lines
139 B
C
|
|
#include <u.h>
|
||
|
|
#include <libc.h>
|
||
|
|
#include "9proc.h"
|
||
|
|
#undef fork
|
||
|
|
|
||
|
|
int
|
||
|
|
p9fork(void)
|
||
|
|
{
|
||
|
|
int pid;
|
||
|
|
|
||
|
|
pid = fork();
|
||
|
|
_p9uproc(0);
|
||
|
|
return pid;
|
||
|
|
}
|