Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
strace
/
ae259337730f2d7a2b47bfbfb33aad1db0b65fba
/
.
/
test
/
fork.c
blob: 3f68f6722ab7543f671e414e1b63c55fc5cd38c4 [
file
] [
log
] [
blame
]
Wichert Akkerman
76baf7c
1999-02-19 00:21:36 +0000
[
diff
] [
blame
]
1
main
()
2
{
3
if
(
fork
()
==
0
)
4
write
(
1
,
"child\n"
,
6
);
5
else
{
6
wait
(
0
);
7
write
(
1
,
"parent\n"
,
7
);
8
}
9
exit
(
0
);
10
}