xref
: /
plan9-contrib
/
sys
/
src
/
libc
/
9sys
/
fork.c
(revision 219b2ee8daee37f4aad58d63f21287faa8e4ffdc)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#
include
<
u.h
>
2
#
include
<
libc.h
>
3
4
int
5
fork
(
void
)
6
{
7
return
rfork
(
RFPROC
|
RFFDG
);
8
}
9