Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
strace
/
f23b097fc5fdc031dc795c10876d97f31b2826d8
/
.
/
test
/
fork.c
blob: 1425e2dd3e3d457ebfff61fe4c9cc1af3ece7cf9 [
file
] [
log
] [
blame
]
#include
<stdlib.h>
#include
<unistd.h>
#include
<sys/wait.h>
int
main
(
int
argc
,
char
*
argv
[])
{
if
(
fork
()
==
0
)
{
write
(
1
,
"child\n"
,
6
);
}
else
{
wait
(
0
);
write
(
1
,
"parent\n"
,
7
);
}
exit
(
0
);
}