From: Jacek Caban <jacek@codeweavers.com> --- include/msvcrt/math.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/msvcrt/math.h b/include/msvcrt/math.h index 39d285eeb64..977f2a9a1e0 100644 --- a/include/msvcrt/math.h +++ b/include/msvcrt/math.h @@ -89,6 +89,7 @@ _ACRTIMP double __cdecl _y1(double); _ACRTIMP double __cdecl _yn(int, double); _ACRTIMP double __cdecl cbrt(double); +_ACRTIMP double __cdecl erfc(double); _ACRTIMP double __cdecl exp2(double); _ACRTIMP double __cdecl expm1(double); _ACRTIMP double __cdecl log1p(double); @@ -99,6 +100,7 @@ _ACRTIMP double __cdecl round(double); _ACRTIMP double __cdecl trunc(double); _ACRTIMP float __cdecl cbrtf(float); +_ACRTIMP float __cdecl erfcf(float); _ACRTIMP float __cdecl exp2f(float); _ACRTIMP float __cdecl expm1f(float); _ACRTIMP float __cdecl log1pf(float); @@ -291,6 +293,9 @@ _ACRTIMP int __cdecl _dsign(double); _ACRTIMP int __cdecl _ldsign(long double); _ACRTIMP int __cdecl _fdsign(float); +_ACRTIMP double __cdecl nan(const char *); +_ACRTIMP float __cdecl nanf(const char *); + #ifdef __cplusplus extern "C++" { -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10129