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