8 lines
116 B
C
Raw Normal View History

2024-10-02 22:15:59 +04:00
#pragma once
#ifdef _WIN32
#include <process.h>
#define getpid _getpid
#else
#include <unistd.h>
#endif