# issue prism.c:178:12: error: use of undeclared identifier 'SIGCLD' signal(SIGCLD, SIG_IGN); //Prevent child process from becoming zombie process # patch <pre>#ifndef SIGCLD # define SIGCLD SIGCHLD #endif</pre> gcc -Wall -o prism prism.c
issue
prism.c:178:12: error: use of undeclared identifier 'SIGCLD'
signal(SIGCLD, SIG_IGN); //Prevent child process from becoming zombie process
patch
gcc -Wall -o prism prism.c