Stubplement fmodf

svn path=/branches/ros-amd64-bringup/; revision=41035
This commit is contained in:
Timo Kreuzer
2009-05-21 20:34:30 +00:00
parent aeaf524709
commit a67efbb26f
2 changed files with 22 additions and 0 deletions
+1
View File
@@ -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>
+21
View File
@@ -0,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@reactos.org)
*/
/* INCLUDES ******************************************************************/
#include <ndk/amd64/asm.h>
#include <ndk/amd64/asmmacro.S>
.intel_syntax noprefix
.proc fmodf
UNIMPLEMENTED fmodf
ret
.endproc