faf722234d
test/.cvsignore: new file defs.h: Up maximum number of traced processed to 64 strace.c: Disable some debugging code from davidm implement setarg for more architectures implement change_syscall
11 lines
115 B
C
11 lines
115 B
C
main()
|
|
{
|
|
if (vfork() == 0)
|
|
write(1, "child\n", 6);
|
|
else {
|
|
wait(0);
|
|
write(1, "parent\n", 7);
|
|
}
|
|
exit(0);
|
|
}
|