Author: tkreuzer
Date: Fri May 22 00:34:30 2009
New Revision: 41035
URL:
http://svn.reactos.org/svn/reactos?rev=41035&view=rev
Log:
Stubplement fmodf
Added:
branches/ros-amd64-bringup/reactos/lib/sdk/crt/math/amd64/fmodf.S (with props)
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] Fri May 22
00:34:30 2009
@@ -172,6 +172,7 @@
<file>floor.S</file>
<file>floorf.S</file>
<file>fmod.S</file>
+ <file>fmodf.S</file>
<file>ldexp.S</file>
<file>log.S</file>
<file>log10.S</file>
Added: branches/ros-amd64-bringup/reactos/lib/sdk/crt/math/amd64/fmodf.S
URL:
http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/lib/s…
==============================================================================
--- branches/ros-amd64-bringup/reactos/lib/sdk/crt/math/amd64/fmodf.S (added)
+++ branches/ros-amd64-bringup/reactos/lib/sdk/crt/math/amd64/fmodf.S [iso-8859-1] Fri May
22 00:34:30 2009
@@ -1,0 +1,21 @@
+/*
+ * COPYRIGHT: See COPYING in the top level directory
+ * PROJECT: ReactOS system libraries
+ * PURPOSE: Implementation of fmodf
+ * FILE: lib/sdk/crt/math/amd64/fmodf.S
+ * PROGRAMMER: Timo Kreuzer (timo.kreuzer(a)reactos.org)
+ */
+
+/* INCLUDES ******************************************************************/
+
+#include <ndk/amd64/asm.h>
+#include <ndk/amd64/asmmacro.S>
+
+.intel_syntax noprefix
+
+
+.proc fmodf
+ UNIMPLEMENTED fmodf
+ ret
+
+.endproc
Propchange: branches/ros-amd64-bringup/reactos/lib/sdk/crt/math/amd64/fmodf.S
------------------------------------------------------------------------------
svn:eol-style = native