summaryrefslogtreecommitdiffstats
path: root/scripts/external_libs/pyzmq-14.5.0/python3/ucs4/32bit/zmq/utils/getpid_compat.h
blob: 47ce90fae08ba70fb4561bc3c43893ae093a4dcc (plain)
1
2
3
4
5
6
#ifdef _WIN32
    #include <process.h>
    #define getpid _getpid
#else
    #include <unistd.h>
#endif