xref
: /
haiku
/
src
/
system
/
libroot
/
posix
/
musl
/
math
/
__math_invalid.c
(revision 830f67ef991407f287dbc1238aa5f5906d90c991)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#
include
"
libm.h
"
2
3
double
__math_invalid
(
double
x
)
4
{
5
return
(
x
-
x
) / (
x
-
x
);
6
}
7