update for HEAD-2003021201
[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 unsigned long _beginthread(
10     void (__cdecl *start_address)(void*),
11     unsigned stack_size,
12     void* arglist)
13 {
14     errno = ENOSYS;
15     return (unsigned long)-1;
16 }
17
18 void _endthread(void)
19 {
20 }
21
22 /* EOF */