comparison 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
comparison
equal deleted inserted replaced
67:f6334be47118 68:561a7518be6b
1 #include "quadmath-imp.h"
2
3
4 int
5 signbitq (const __float128 x)
6 {
7 ieee854_float128 f;
8 f.value = x;
9 return f.ieee.negative;
10 }