getpid_compat.h 103 B

123456
  1. #ifdef _WIN32
  2. #include <process.h>
  3. #define getpid _getpid
  4. #else
  5. #include <unistd.h>
  6. #endif