[SDK] One step further towards ReactOS source code tree restructure: the sdk folder...
[reactos.git] / reactos / lib / sdk / crt / math / fmodf.c
diff --git a/reactos/lib/sdk/crt/math/fmodf.c b/reactos/lib/sdk/crt/math/fmodf.c
deleted file mode 100644 (file)
index 0050e02..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-
-#include <math.h>
-
-_Check_return_
-float
-__cdecl
-fmodf(
-    _In_ float x,
-    _In_ float y)
-{
-    return (float)fmod((double)x,(double)y);
-}