8ed5727642
strace.c: suppress "warning: unused static" message by adding #ifdef's around a variable .gitignore: trivial test/*.c: cleanup (suppress warnings, much better style).
15 lines
186 B
C
15 lines
186 B
C
#include <stdlib.h>
|
|
#include <unistd.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);
|
|
}
|