mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 16:23:01 +00:00

* lib/msvcrt/.cvsignore: Ignore *.gch. * lib/msvcrt/precomp.h: New file. * lib/msvcrt/Makefile (TARGET_PCH): Set to precomp.h. * lib/msvcrt/*/*.c: Use pre-compiled header. svn path=/trunk/; revision=10555
26 lines
386 B
C
26 lines
386 B
C
#include "precomp.h"
|
|
#include <msvcrt/errno.h>
|
|
#include <msvcrt/process.h>
|
|
#include <msvcrt/internal/file.h>
|
|
|
|
#if 0
|
|
/*
|
|
* @unimplemented
|
|
*/
|
|
unsigned long _beginthread(
|
|
void (__cdecl *start_address)(void*),
|
|
unsigned stack_size,
|
|
void* arglist)
|
|
{
|
|
__set_errno ( ENOSYS );
|
|
return (unsigned long)-1;
|
|
}
|
|
#endif
|
|
/*
|
|
* @unimplemented
|
|
*/
|
|
void _endthread(void)
|
|
{
|
|
}
|
|
|
|
/* EOF */
|