Welcome to mirror list, hosted at ThFree Co, Russian Federation.

isnan.c « math « cygwin « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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);
}