From c6b52038efa00cbc691514c88f3061fa21d1ae1d Mon Sep 17 00:00:00 2001 From: verhaegs Date: Fri, 25 Dec 2009 15:22:18 +0000 Subject: [PATCH] Documented the fact that NAN is not handled by strtod. git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@32178 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- compiler/clib/strtod.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compiler/clib/strtod.c b/compiler/clib/strtod.c index dfe021c560..1c3233db54 100644 --- a/compiler/clib/strtod.c +++ b/compiler/clib/strtod.c @@ -46,6 +46,7 @@ EXAMPLE BUGS + NAN is not handled at the moment SEE ALSO atof(), atoi(), atol(), strtol(), strtoul() @@ -54,6 +55,7 @@ ******************************************************************************/ { +#warning TODO: implement NAN handling double val = 0, precision; int exp = 0; char c = 0, c2 = 0; -- 2.11.4.GIT