summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/math/isnan.c
blob: ac68bef6d3ee8e8248df837572ba5f60b68aaa6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
int
isnan (double x)
{
  return __builtin_isnan (x);
}

int
isnanf (float x)
{
  return __builtin_isnan (x);
}

int
isnanl (long double x)
{
  return __builtin_isnan (x);
}