Sign in
plan9port
/
plan9
/
2b4b2ae19107f2c7e45ca6ab6f73c9c8a5fb84dd
/
.
/
src
/
lib9
/
fork.c
blob: 99e84dc915eb04b8dcaae43494b2923c43fdfb08 [
file
]
#include
<u.h>
#include
<libc.h>
#include
"9proc.h"
#undef
fork
int
p9fork
(
void
)
{
int
pid
;
pid
=
fork
();
_p9uproc
(
0
);
return
pid
;
}