update for HEAD-2003091401
[reactos.git] / lib / msvcrt / process / thread.c
index e21ac5a..6b6f407 100644 (file)
@@ -6,15 +6,21 @@
 #include <msvcrt/process.h>
 
 
+/*
+ * @unimplemented
+ */
 unsigned long _beginthread(
     void (__cdecl *start_address)(void*),
     unsigned stack_size,
     void* arglist)
 {
-    errno = ENOSYS;
+    __set_errno ( ENOSYS );
     return (unsigned long)-1;
 }
 
+/*
+ * @unimplemented
+ */
 void _endthread(void)
 {
 }