Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
6d38c9cf80f47623e5e48190046673bbd0dc410b
/
.
/
src
/
math
/
__signbit.c
blob: e700b6b75fcb91e1919ad64b7da4e8c6a16f6065 [
file
] [
log
] [
blame
]
#include
"libm.h"
// FIXME: macro in math.h
int
__signbit
(
double
x
)
{
union
{
double
d
;
uint64_t
i
;
}
y
=
{
x
};
return
y
.
i
>>
63
;
}