1 /* 2 * PROJECT: ReactOS CRT library 3 * LICENSE: MIT (https://spdx.org/licenses/MIT) 4 * PURPOSE: Implementation of _matherr dummy 5 * COPYRIGHT: Copyright 2021 Timo Kreuzer <timo.kreuzer@reactos.org> 6 */ 7 8 // DO NOT SYNC WITH WINE OR MINGW32 9 10 #include <math.h> 11 12 /* Dummy function, like in MS CRT */ 13 int 14 __cdecl 15 _matherr(struct _exception *pexcept) 16 { 17 return 0; 18 } 19