getpid_compat.h 116 B

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