view libquadmath/math/signbitq.c @ 76:6381ea127240

call argument iterator fix
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 20 Sep 2011 16:58:47 +0900
parents 561a7518be6b
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;
}