mirror of
https://github.com/reactos/reactos.git
synced 2025-07-24 22:03:48 +00:00
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:
parent
2d55091cc2
commit
266fe632e9
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue