ReactOS 0.4.15-dev-7924-g5949c20
_matherr.c
Go to the documentation of this file.
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 */
13int
15_matherr(struct _exception *pexcept)
16{
17 return 0;
18}
int __cdecl _matherr(struct _exception *pexcept)
Definition: _matherr.c:15
#define __cdecl
Definition: accygwin.h:79