repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: (mostly) drop NT4 and Samba < 3.0 support
[newlib-cygwin.git]
/
winsup
/
cygwin
/
math
/
isnan.c
blob
ac68bef6d3ee8e8248df837572ba5f60b68aaa6e
1
int
2
isnan
(
double
x
)
3
{
4
return
__builtin_isnan
(
x
);
5
}
6
7
int
8
isnanf
(
float
x
)
9
{
10
return
__builtin_isnan
(
x
);
11
}
12
13
int
14
isnanl
(
long double
x
)
15
{
16
return
__builtin_isnan
(
x
);
17
}
18