view libquadmath/math/signbitq.c @ 68:561a7518be6b

update gcc-4.6
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Sun, 21 Aug 2011 07:07:55 +0900
parents
children 1830386684a0
line wrap: on
line source

#include "quadmath-imp.h"


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