diff options
author | ache <ache@FreeBSD.org> | 1995-08-01 22:20:16 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1995-08-01 22:20:16 +0000 |
commit | 923e998823f11942a1d9f22ef01d3c3aa0cc4b9e (patch) | |
tree | 51a727b62035258310d99a2d140e29ac1b2720e8 /lib/libc/stdlib/strtod.c | |
parent | 0548e292bd978f210f0f235daf02b3ab3d37c85c (diff) | |
download | FreeBSD-src-923e998823f11942a1d9f22ef01d3c3aa0cc4b9e.zip FreeBSD-src-923e998823f11942a1d9f22ef01d3c3aa0cc4b9e.tar.gz |
Make strtod conforms manpage, use isspace to skip initial whitespaces
instead of hardcoded whitespaces
Diffstat (limited to 'lib/libc/stdlib/strtod.c')
-rw-r--r-- | lib/libc/stdlib/strtod.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/lib/libc/stdlib/strtod.c b/lib/libc/stdlib/strtod.c index cd82c73..0ccd6fd 100644 --- a/lib/libc/stdlib/strtod.c +++ b/lib/libc/stdlib/strtod.c @@ -146,6 +146,7 @@ static char sccsid[] = "@(#)strtod.c 8.1 (Berkeley) 6/4/93"; #endif #include "errno.h" +#include <ctype.h> #ifdef Bad_float_h #undef __STDC__ #ifdef IEEE_MC68k @@ -1212,14 +1213,9 @@ strtod case 0: s = s00; goto ret; - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case ' ': - continue; default: + if (isspace((unsigned char)*s)) + continue; goto break2; } break2: |