Retro68/gcc/libquadmath/math/signbitq.c
Wolfgang Thaller aaf905ce07 add gcc 4.70
2012-03-28 01:13:14 +02:00

11 lines
129 B
C

#include "quadmath-imp.h"
int
signbitq (const __float128 x)
{
ieee854_float128 f;
f.value = x;
return f.ieee.negative;
}