mirror of
https://github.com/fluencelabs/musl
synced 2025-06-07 20:11:49 +00:00
12 lines
209 B
C
12 lines
209 B
C
|
#include "libm.h"
|
||
|
|
||
|
// FIXME: should be a macro
|
||
|
#if (LDBL_MANT_DIG == 64 || LDBL_MANT_DIG == 113) && LDBL_MAX_EXP == 16384
|
||
|
int __signbitl(long double x)
|
||
|
{
|
||
|
union ldshape u = {x};
|
||
|
|
||
|
return u.bits.sign;
|
||
|
}
|
||
|
#endif
|