]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/math/aarch64/floorf.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / math / aarch64 / floorf.c
1 #include <math.h>
2
3 float floorf(float x)
4 {
5 __asm__ ("frintm %s0, %s1" : "=w"(x) : "w"(x));
6 return x;
7 }