Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers...
[reactos.git] / reactos / sdk / lib / crt / math / i386 / fmod_asm.s
diff --git a/reactos/sdk/lib/crt/math/i386/fmod_asm.s b/reactos/sdk/lib/crt/math/i386/fmod_asm.s
deleted file mode 100644 (file)
index 44be4c0..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-
-#include <asm.inc>
-
-PUBLIC _fmod
-/* FUNCTIONS ***************************************************************/
-.code
-
-_fmod:
-    push ebp
-    mov ebp, esp
-
-    fld qword ptr [ebp + 8]
-    fld qword ptr [ebp + 16]
-    fxch st(1)
-l1:
-    fprem
-    fstsw ax
-    sahf
-    jp l1
-    fstp st(1)
-
-    pop ebp
-    ret
-
-END