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