aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.7/libquadmath/math/signbitq.c
blob: 2ddab8667a28e26ba393df6befca5714226c9353 (plain)
1
2
3
4
5
6
7
8
9
10
#include "quadmath-imp.h"


int
signbitq (const __float128 x)
{
  ieee854_float128 f;
  f.value = x;
  return f.ieee.negative;
}