box64/tests/test09.c
Johannes Schauer Marin Rodrigues 28dc8e6751
remove executable bits
Closes: #895
2023-07-21 02:10:26 +02:00

22 lines
335 B
C

#include <stdio.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
void forkexample()
{
int x = 1;
if (fork() == 0)
printf("Child has x = %d\n", ++x);
else {
wait(NULL);
printf("Parent has x = %d\n", --x);
}
}
int main()
{
forkexample();
return 0;
}