mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 21:11:54 +00:00
[CRT] Fix _matherror and _setusermatherror
We previously used 2 different versions: one from wine and one from mingw-w64. The former was used in msvcrt, the latter was statically compiled into the executable. When using MS libs, there is only one _matherr, which is statically linked into the executable and does nothing (it's not really a function for users to be called). _setusermatherror should only exist in msvcrt and not statically, which wouldn't work at all.
This commit is contained in:
parent
486a4d93ed
commit
da2a5673e7
8 changed files with 57 additions and 128 deletions
|
@ -55,7 +55,6 @@ endif()
|
|||
|
||||
list(APPEND CRT_EXCEPT_SOURCE
|
||||
${LIBCNTPR_EXCEPT_SOURCE}
|
||||
except/matherr.c
|
||||
except/stack.c
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue