Topic: Missing C header files in mixed Fortran and C project
I am moving a mixed Fortran 77 and C program from Linux (gfortran and cc) to Windows (27 .f files and 18 .c files). Sixteen of the C files include a common header file which contains almost 2 dozen C headers. However, 3 headers are not found which is the only compilation error. They are
#include <sys/ipc.h>
#include <sys/msg.h>
#include <sys/wait.h>
My assumption is that there is no corresponding Windows equivalent. If I comment out the 3 headers, the program compiles without error but does not work properly. So apparently there is something in 1 or more of the 3 headers that is required but otherwise not flagged during compilation. I am not the original author. Any help with this issue is appreciated.
Thanks!
BTW, This is my first Simply Fortran project so this may be a noob error.