Module: wine Branch: master Commit: 6c63e9f5d2c5acc786df0fcfc1cd3df736beb3e7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6c63e9f5d2c5acc786df0fcfc1...
Author: Grazvydas Ignotas notasas@gmail.com Date: Sun Oct 18 02:31:05 2015 +0300
include: Expose some more implemented math functions.
Signed-off-by: Grazvydas Ignotas notasas@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
include/msvcrt/math.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+)
diff --git a/include/msvcrt/math.h b/include/msvcrt/math.h index 4f69b88..c76fe0d 100644 --- a/include/msvcrt/math.h +++ b/include/msvcrt/math.h @@ -76,6 +76,25 @@ double __cdecl _y0(double); double __cdecl _y1(double); double __cdecl _yn(int, double);
+double __cdecl cbrt(double); +double __cdecl exp2(double); +double __cdecl log2(double); +double __cdecl rint(double); +double __cdecl round(double); +double __cdecl trunc(double); + +float __cdecl cbrtf(float); +float __cdecl exp2f(float); +float __cdecl log2f(float); +float __cdecl rintf(float); +float __cdecl roundf(float); +float __cdecl truncf(float); + +long __cdecl lrint(double); +long __cdecl lrintf(float); +long __cdecl lround(double); +long __cdecl lroundf(float); + #if defined(__x86_64__) || defined(__arm__)
float __cdecl sinf(float);