TelImp.c: In function ‘splatZombie’:
TelImp.c:723:13: error: storage size of ‘wstatus’ isn’t known
union wait wstatus;
Tried compiling on debian 32bit machine (stretch), got this error. Googling revealed that the "union wait" is a problem. Changed it to "int" in TelImp.c file, after that it compiled fine.
Me thinks that maybe it needs some extra macro declaration on some systems.
TelImp.c: In function ‘splatZombie’:
TelImp.c:723:13: error: storage size of ‘wstatus’ isn’t known
union wait wstatus;
Tried compiling on debian 32bit machine (stretch), got this error. Googling revealed that the "union wait" is a problem. Changed it to "int" in TelImp.c file, after that it compiled fine.
Me thinks that maybe it needs some extra macro declaration on some systems.