Author: sginsberg Date: Tue Sep 15 10:48:39 2015 New Revision: 69239
URL: http://svn.reactos.org/svn/reactos?rev=69239&view=rev Log: Fix unexpected side-effect of properly defining CDECL for CRT (how is gcc fine with this?)
Modified: trunk/reactos/lib/sdk/crt/stdlib/errno.c
Modified: trunk/reactos/lib/sdk/crt/stdlib/errno.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdlib/errno.c?... ============================================================================== --- trunk/reactos/lib/sdk/crt/stdlib/errno.c [iso-8859-1] (original) +++ trunk/reactos/lib/sdk/crt/stdlib/errno.c [iso-8859-1] Tue Sep 15 10:48:39 2015 @@ -16,7 +16,7 @@ /********************************************************************* * _errno (MSVCRT.@) */ -int CDECL *_errno(void) +int* CDECL _errno(void) { return &(msvcrt_get_thread_data()->thread_errno); }