提交 bf9d9dca 编写于 作者: R Rich Felker

implement nan, nanf, nanl

上级 b69f695a
#include <math.h>
double nan(const char *s)
{
return NAN;
}
#include <math.h>
float nanf(const char *s)
{
return NAN;
}
#include <math.h>
long double nanl(const char *s)
{
return NAN;
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册