7 lines
103 B
C
7 lines
103 B
C
|
#ifdef _WIN32
|
||
|
#include <process.h>
|
||
|
#define getpid _getpid
|
||
|
#else
|
||
|
#include <unistd.h>
|
||
|
#endif
|