mirror of
https://github.com/reactos/reactos.git
synced 2025-01-07 14:51:00 +00:00
19 lines
376 B
C
19 lines
376 B
C
|
/*
|
||
|
* PROJECT: ReactOS CRT library
|
||
|
* LICENSE: MIT (https://spdx.org/licenses/MIT)
|
||
|
* PURPOSE: Implementation of _matherr dummy
|
||
|
* COPYRIGHT: Copyright 2021 Timo Kreuzer <timo.kreuzer@reactos.org>
|
||
|
*/
|
||
|
|
||
|
// DO NOT SYNC WITH WINE OR MINGW32
|
||
|
|
||
|
#include <math.h>
|
||
|
|
||
|
/* Dummy function, like in MS CRT */
|
||
|
int
|
||
|
__cdecl
|
||
|
_matherr(struct _exception *pexcept)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|