Fix pch usage in most of the rest of crt.lib. Stop the abuse of including io.h, stdio...
[reactos.git] / reactos / lib / crt / process / thread.c
1 #include "precomp.h"
2
3 #if 0
4 /*
5 * @unimplemented
6 */
7 unsigned long _beginthread(
8 void (__cdecl *start_address)(void*),
9 unsigned stack_size,
10 void* arglist)
11 {
12 __set_errno ( ENOSYS );
13 return (unsigned long)-1;
14 }
15 #endif
16 /*
17 * @unimplemented
18 */
19 void _endthread(void)
20 {
21 }
22
23 /* EOF */