From a67efbb26f5273dc2fc57f03272c18e8c2cd24bb Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Thu, 21 May 2009 20:34:30 +0000 Subject: [PATCH] Stubplement fmodf svn path=/branches/ros-amd64-bringup/; revision=41035 --- reactos/lib/sdk/crt/crt.rbuild | 1 + reactos/lib/sdk/crt/math/amd64/fmodf.S | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 reactos/lib/sdk/crt/math/amd64/fmodf.S diff --git a/reactos/lib/sdk/crt/crt.rbuild b/reactos/lib/sdk/crt/crt.rbuild index 16a9ce8b98e..d1be14e9c6a 100644 --- a/reactos/lib/sdk/crt/crt.rbuild +++ b/reactos/lib/sdk/crt/crt.rbuild @@ -172,6 +172,7 @@ floor.S floorf.S fmod.S + fmodf.S ldexp.S log.S log10.S diff --git a/reactos/lib/sdk/crt/math/amd64/fmodf.S b/reactos/lib/sdk/crt/math/amd64/fmodf.S new file mode 100644 index 00000000000..966ceffec40 --- /dev/null +++ b/reactos/lib/sdk/crt/math/amd64/fmodf.S @@ -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 +#include + +.intel_syntax noprefix + + +.proc fmodf + UNIMPLEMENTED fmodf + ret + +.endproc