mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
Stubplement fmodf
svn path=/branches/ros-amd64-bringup/; revision=41035
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user