mq_notify: block all (application) signals in the worker thread
[musl] / src / math / aarch64 / truncf.c
1 #include <math.h>
2
3 float truncf(float x)
4 {
5         __asm__ ("frintz %s0, %s1" : "=w"(x) : "w"(x));
6         return x;
7 }