Edit file File name : getpid_compat.h Content :#ifdef _WIN32 #include <process.h> #define getpid _getpid #else #include <unistd.h> #endif Save