From 7eea8b94010a3d08fd4a086e6dc2b044fb854e0d Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Sat, 5 Nov 2016 18:27:30 +0000 Subject: [PATCH] [CRT] - Avoid 'except' as a variable name in math.h, for compatibility with SEH tests svn path=/trunk/; revision=73144 --- reactos/sdk/include/crt/math.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/sdk/include/crt/math.h b/reactos/sdk/include/crt/math.h index 07e67ef8f6a..b6ab12c8313 100644 --- a/reactos/sdk/include/crt/math.h +++ b/reactos/sdk/include/crt/math.h @@ -101,7 +101,7 @@ _Check_return_ double __cdecl tanh(_In_ double x); #ifndef _CRT_MATHERR_DEFINED #define _CRT_MATHERR_DEFINED -int __CRTDECL _matherr(_Inout_ struct _exception *except); +int __CRTDECL _matherr(_Inout_ struct _exception *exception); #endif #ifndef _CRT_ATOF_DEFINED