diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-03-13 01:55:25 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-03-13 01:55:25 -0400 |
commit | bf9d9dcaa631db9918452d05c188f01c8e5f537f (patch) | |
tree | 0bf7955f3cb556a43122a83a614a06c1af6bb442 /src/math/nan.c | |
parent | b69f695acedd4ce2798ef9ea28d834ceccc789bd (diff) | |
download | musl-bf9d9dcaa631db9918452d05c188f01c8e5f537f.tar.gz |
implement nan, nanf, nanl
Diffstat (limited to 'src/math/nan.c')
-rw-r--r-- | src/math/nan.c | 6 |
1 files changed, 6 insertions, 0 deletions
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 <math.h> + +double nan(const char *s) +{ + return NAN; +} |