Author: tkreuzer
Date: Sat Apr 10 19:07:59 2010
New Revision: 46820
URL: http://svn.reactos.org/svn/reactos?rev=46820&view=rev
Log:
Move cosf and sinf out of i386 specific area, they are portable wrappers only.
Added:
branches/ros-amd64-bringup/reactos/lib/sdk/crt/math/cosf.c
- copied unchanged from r46805, branches/ros-amd64-bringup/reactos/lib/sdk/crt/math/i386/cosf.c
branches/ros-amd64-bringup/reactos/lib/sdk/crt/math/sinf.c
- copied unchanged from r46805, branches/ros-amd64-bringup/reactos/lib/sdk/crt/math/i386/sinf.c
Removed:
branches/ros-amd64-bringup/reactos/lib/sdk/crt/math/i386/cosf.c
branches/ros-amd64-bringup/reactos/lib/sdk/crt/math/i386/sinf.c
Modified:
branches/ros-amd64-bringup/reactos/lib/sdk/crt/crt.rbuild
Modified: branches/ros-amd64-bringup/reactos/lib/sdk/crt/crt.rbuild
URL: http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/lib/s…
==============================================================================
--- branches/ros-amd64-bringup/reactos/lib/sdk/crt/crt.rbuild [iso-8859-1] (original)
+++ branches/ros-amd64-bringup/reactos/lib/sdk/crt/crt.rbuild [iso-8859-1] Sat Apr 10 19:07:59 2010
@@ -113,6 +113,7 @@
<file>adjust.c</file>
<file>asin.c</file>
<file>cabs.c</file>
+ <file>cosf.c</file>
<file>cosh.c</file>
<file>div.c</file>
<file>fdivbug.c</file>
@@ -123,6 +124,7 @@
<file>modf.c</file>
<file>rand.c</file>
<file>s_modf.c</file>
+ <file>sinf.c</file>
<file>sinh.c</file>
<file>tanh.c</file>
<file>pow_asm.c</file>
@@ -156,12 +158,10 @@
<file>atan2.c</file>
<file>ci.c</file>
- <file>cosf.c</file>
<file>exp.c</file>
<file>fmod.c</file>
<file>fmodf.c</file>
<file>ldexp.c</file>
- <file>sinf.c</file>
<file>sqrtf.c</file>
</directory>
<!-- FIXME: we don't actually implement these... they recursively call themselves through an alias -->
Removed: branches/ros-amd64-bringup/reactos/lib/sdk/crt/math/i386/cosf.c
URL: http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/lib/s…
==============================================================================
--- branches/ros-amd64-bringup/reactos/lib/sdk/crt/math/i386/cosf.c [iso-8859-1] (original)
+++ branches/ros-amd64-bringup/reactos/lib/sdk/crt/math/i386/cosf.c (removed)
@@ -1,11 +1,0 @@
-/**
- * This file has no copyright assigned and is placed in the Public Domain.
- * This file is part of the w64 mingw-runtime package.
- * No warranty is given; refer to the file DISCLAIMER.PD within this package.
- */
-#include <math.h>
-
-float cosf(float _X)
-{
- return ((float)cos((double)_X));
-}
Removed: branches/ros-amd64-bringup/reactos/lib/sdk/crt/math/i386/sinf.c
URL: http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/lib/s…
==============================================================================
--- branches/ros-amd64-bringup/reactos/lib/sdk/crt/math/i386/sinf.c [iso-8859-1] (original)
+++ branches/ros-amd64-bringup/reactos/lib/sdk/crt/math/i386/sinf.c (removed)
@@ -1,11 +1,0 @@
-/**
- * This file has no copyright assigned and is placed in the Public Domain.
- * This file is part of the w64 mingw-runtime package.
- * No warranty is given; refer to the file DISCLAIMER.PD within this package.
- */
-#include <math.h>
-
-float sinf(float _X)
-{
- return ((float) sin ((double) _X));
-}