Sign in
gnu
/
gcc
/
a787dfe21c21becea5c7180c4d6fe2c63957633f
/
.
/
libquadmath
/
math
/
signbitq.c
blob: 2ddab8667a28e26ba393df6befca5714226c9353 [
file
] [
log
] [
blame
]
#include
"quadmath-imp.h"
int
signbitq
(
const
__float128 x
)
{
ieee854_float128 f
;
f
.
value
=
x
;
return
f
.
ieee
.
negative
;
}