Fix unexpected side-effect of properly defining CDECL for CRT (how is gcc fine with this?)

svn path=/trunk/; revision=69239
This commit is contained in:
Stefan Ginsberg 2015-09-15 10:48:39 +00:00
parent 2d55091cc2
commit 266fe632e9

View file

@ -16,7 +16,7 @@ static _invalid_parameter_handler invalid_parameter_handler = NULL;
/*********************************************************************
* _errno (MSVCRT.@)
*/
int CDECL *_errno(void)
int* CDECL _errno(void)
{
return &(msvcrt_get_thread_data()->thread_errno);
}