/* * PROJECT: ReactOS CRT library * LICENSE: MIT (https://spdx.org/licenses/MIT) * PURPOSE: Implementation of _matherr dummy * COPYRIGHT: Copyright 2021 Timo Kreuzer */ // DO NOT SYNC WITH WINE OR MINGW32 #include /* Dummy function, like in MS CRT */ int __cdecl _matherr(struct _exception *pexcept) { return 0; }