:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / crtdll / process / procid.c
1 #include <windows.h>
2 #include <crtdll/process.h>
3
4 int _getpid (void)
5 {
6         //fixme GetCurrentProcessId
7         //return (int)GetCurrentProcessId();
8         return 1;
9 }
10