[PATCH 3/3] include: Expose some more implemented math functions.

Grazvydas Ignotas notasas at gmail.com
Sat Oct 17 18:31:05 CDT 2015


Probably forgotten by 547ba7a10b640fb793a70b995a05f7ce42cddacd .

Signed-off-by: Grazvydas Ignotas <notasas at gmail.com>
---
 include/msvcrt/math.h | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/include/msvcrt/math.h b/include/msvcrt/math.h
index ebe51e5..aedb3fe 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);
-- 
1.9.1




More information about the wine-patches mailing list