update for HEAD-2003091401
[reactos.git] / lib / msvcrt / process / procid.c
1 #include <windows.h>
2 #include <msvcrt/process.h>
3
4 /*
5  * @implemented
6  */
7 int _getpid (void)
8 {
9    return (int)GetCurrentProcessId();
10 }
11