1 #include "quadmath-imp.h"
2 
3 
4 int
signbitq(const __float128 x)5 signbitq (const __float128 x)
6 {
7   ieee854_float128 f;
8   f.value = x;
9   return f.ieee.negative;
10 }
11