Module: wine Branch: master Commit: b3194e04e078d41a3090e6533c41d869957c149d URL: http://source.winehq.org/git/wine.git/?a=commit;h=b3194e04e078d41a3090e6533c...
Author: Grazvydas Ignotas notasas@gmail.com Date: Sun Oct 18 02:31:03 2015 +0300
include: Use float math functions on ARM.
Signed-off-by: Grazvydas Ignotas notasas@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
include/msvcrt/math.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/msvcrt/math.h b/include/msvcrt/math.h index c1333d4..a7cbcc0 100644 --- a/include/msvcrt/math.h +++ b/include/msvcrt/math.h @@ -76,7 +76,7 @@ double __cdecl _y0(double); double __cdecl _y1(double); double __cdecl _yn(int, double);
-#ifdef __x86_64__ +#if defined(__x86_64__) || defined(__arm__)
float __cdecl sinf(float); float __cdecl cosf(float);