From bf9d9dcaa631db9918452d05c188f01c8e5f537f Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 13 Mar 2012 01:55:25 -0400 Subject: implement nan, nanf, nanl --- src/math/nanl.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/math/nanl.c (limited to 'src/math/nanl.c') 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; +} -- cgit v1.2.1