master
/ .localenv / lib / python3.5 / site-packages / zmq / utils / getpid_compat.h

getpid_compat.h @master raw · history · blame

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