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