xref
: /
haiku
/
src
/
system
/
libroot
/
posix
/
musl
/
math
/
finite.c
(revision 0fae96c5a349db3761ac2a4ab4a7fbbf23a3b76c)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#
define
_GNU_SOURCE
2
#
include
<
math.h
>
3
4
int
finite
(
double
x
)
5
{
6
return
isfinite
(
x
);
7
}
8