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

s_isnan.c « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c93ff19f930ccfa3f8385a58a76bad57a9341c5e (plain)
1
2
3
4
5
6
7
8
#include <math.h>
#include "headers/isnan.h"

#undef isnan
int isnan(double x)
{
  return _isnan(x);
}