don't reject unknown/future flags in sigaltstack, allow SS_AUTODISARM
[musl.git] / src / math / s390x / truncl.c
blob4eb920a519ed048923498987126663d972a23651
1 #include <math.h>
3 #if defined(__HTM__) || __ARCH__ >= 9
5 long double truncl(long double x)
7 __asm__ ("fixbra %0, 5, %1, 4" : "=f"(x) : "f"(x));
8 return x;
11 #else
13 #include "../truncl.c"
15 #endif