view libquadmath/math/signbitq.c @ 120:f93fa5091070

fix conv1.c
author mir3636
date Thu, 08 Mar 2018 14:53:42 +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;
}