mirror of
git://git.musl-libc.org/musl
synced 2025-04-01 22:48:38 +00:00
14 lines
141 B
C
14 lines
141 B
C
#include "libm.h"
|
|
|
|
// FIXME: macro in math.h
|
|
int __signbit(double x)
|
|
{
|
|
union {
|
|
double d;
|
|
uint64_t i;
|
|
} y = { x };
|
|
return y.i>>63;
|
|
}
|
|
|
|
|