From: Rich Felker Date: Tue, 13 Mar 2012 05:55:25 +0000 (-0400) Subject: implement nan, nanf, nanl X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=bf9d9dcaa631db9918452d05c188f01c8e5f537f;ds=sidebyside implement nan, nanf, nanl --- diff --git a/src/math/nan.c b/src/math/nan.c new file mode 100644 index 00000000..9e0826c7 --- /dev/null +++ b/src/math/nan.c @@ -0,0 +1,6 @@ +#include + +double nan(const char *s) +{ + return NAN; +} diff --git a/src/math/nanf.c b/src/math/nanf.c new file mode 100644 index 00000000..752ce546 --- /dev/null +++ b/src/math/nanf.c @@ -0,0 +1,6 @@ +#include + +float nanf(const char *s) +{ + return NAN; +} diff --git a/src/math/nanl.c b/src/math/nanl.c new file mode 100644 index 00000000..969af564 --- /dev/null +++ b/src/math/nanl.c @@ -0,0 +1,6 @@ +#include + +long double nanl(const char *s) +{ + return NAN; +}