diff --git a/newlib/examples/test_fork.c b/newlib/examples/test_fork.c index 021a1cfb..eec01982 100644 --- a/newlib/examples/test_fork.c +++ b/newlib/examples/test_fork.c @@ -29,6 +29,7 @@ int main(int argc, char** argv) { pid_t pid = fork(); + printf("Create child process...\n"); if (pid == 0) // child printf("Hello from child process!\n"); else