1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-05-20 01:24:11 +00:00
reactos/sdk/lib/crt/process/procid.c

11 lines
128 B
C

#include <precomp.h>
#include <process.h>
/*
* @implemented
*/
int _getpid (void)
{
return (int)GetCurrentProcessId();
}