branch update for HEAD-2003021201
[reactos.git] / lib / crtdll / process / threadid.c
1 #include <windows.h>
2 #include <msvcrt/process.h>
3
4 unsigned long __threadid (void)
5 {
6         return GetCurrentThreadId();
7 }
8
9 void *__threadhandle(void)
10 {
11         return GetCurrentThread();
12 }