update for HEAD-2003091401
[reactos.git] / lib / msvcrt / process / thread.c
1 /* $Id$
2  *
3  */
4 #include <windows.h>
5 #include <msvcrt/errno.h>
6 #include <msvcrt/process.h>
7
8
9 /*
10  * @unimplemented
11  */
12 unsigned long _beginthread(
13     void (__cdecl *start_address)(void*),
14     unsigned stack_size,
15     void* arglist)
16 {
17     __set_errno ( ENOSYS );
18     return (unsigned long)-1;
19 }
20
21 /*
22  * @unimplemented
23  */
24 void _endthread(void)
25 {
26 }
27
28 /* EOF */