mirror of https://git.musl-libc.org/git/musl
committed by
Rich Felker
2 changed files with 12 additions and 0 deletions
@ -0,0 +1,9 @@ |
|||
#include <float.h> |
|||
#include "libm.h" |
|||
|
|||
#if LDBL_MANT_DIG != DBL_MANT_DIG |
|||
long double __math_invalidl(long double x) |
|||
{ |
|||
return (x - x) / (x - x); |
|||
} |
|||
#endif |
|||
Loading…
Reference in new issue