29 Oct
2024
29 Oct
'24
3:49 a.m.
From: Rémi Bernon <rbernon(a)codeweavers.com> --- include/msvcrt/math.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/msvcrt/math.h b/include/msvcrt/math.h index 5a41b061907..4f9840b3a02 100644 --- a/include/msvcrt/math.h +++ b/include/msvcrt/math.h @@ -426,5 +426,6 @@ static inline double y1( double x ) { return _y1( x ); } static inline double yn( int n, double x ) { return _yn( n, x ); } static inline float hypotf( float x, float y ) { return _hypotf( x, y ); } +static inline long double atan2l( long double x, long double y ) { return atan2( (double)y, (double)x ); } #endif /* __WINE_MATH_H */ -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/6745