Use the standard CreateThread routine to create 16-bit tasks instead
of duplicating the code.
diff --git a/include/thread.h b/include/thread.h
index faf7ba8..7d84170 100644
--- a/include/thread.h
+++ b/include/thread.h
@@ -125,8 +125,7 @@
/* scheduler/thread.c */
extern void THREAD_Init(void);
-extern TEB *THREAD_Create( int fd, DWORD stack_size, BOOL alloc_stack16 );
-extern TEB *THREAD_InitStack( TEB *teb, DWORD stack_size, BOOL alloc_stack16 );
+extern TEB *THREAD_InitStack( TEB *teb, DWORD stack_size );
extern BOOL THREAD_IsWin16( TEB *thdb );
extern TEB *THREAD_IdToTEB( DWORD id );