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