update for HEAD-2003021201
[reactos.git] / lib / msvcrt / process / threadx.c
1 /* $Id$
2  *
3  */
4 #include <windows.h>
5 #include <msvcrt/errno.h>
6 #include <msvcrt/process.h>
7
8
9 unsigned long _beginthreadex(
10     void* security,
11     unsigned stack_size,
12     unsigned (__stdcall *start_address)(void*),
13     void* arglist,
14     unsigned initflag,
15     unsigned* thrdaddr)
16 {
17     errno = ENOSYS;
18     return (unsigned long)-1;
19 }
20
21
22 void _endthreadex(unsigned retval)
23 {
24 }
25
26 /* EOF */