diff --git a/reactos/lib/sdk/crt/libcntpr.rbuild b/reactos/lib/sdk/crt/libcntpr.rbuild
index 7bb24736d16..b3714aade69 100644
--- a/reactos/lib/sdk/crt/libcntpr.rbuild
+++ b/reactos/lib/sdk/crt/libcntpr.rbuild
@@ -61,6 +61,7 @@
ceil.S
cos.S
+ floor.S
log.S
log10.S
sin.S
@@ -68,6 +69,7 @@
alldiv.S
+ pow.S
abs.c
diff --git a/reactos/lib/sdk/crt/math/i386/floor.S b/reactos/lib/sdk/crt/math/i386/floor.S
index 8f6ccff190b..f70b70d0db1 100644
--- a/reactos/lib/sdk/crt/math/i386/floor.S
+++ b/reactos/lib/sdk/crt/math/i386/floor.S
@@ -11,9 +11,9 @@
#else
.align 4
#endif
-.globl floor
- .def floor; .scl 2; .type 32; .endef
-floor:
+.globl _floor
+ .def _floor; .scl 2; .type 32; .endef
+_floor:
#ifdef _WIN64
fldt (%rdx)
subq $24,%rsp