summaryrefslogtreecommitdiff
path: root/src/lib/libc/stdlib/strtod.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/stdlib/strtod.c')
-rw-r--r--src/lib/libc/stdlib/strtod.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libc/stdlib/strtod.c b/src/lib/libc/stdlib/strtod.c
index f1c5463933..57db3d42b1 100644
--- a/src/lib/libc/stdlib/strtod.c
+++ b/src/lib/libc/stdlib/strtod.c
@@ -1,5 +1,5 @@
1/* $OpenBSD: strtod.c,v 1.2 1996/03/19 23:15:11 niklas Exp $ */ 1/* $OpenBSD: strtod.c,v 1.3 1996/07/27 10:45:23 deraadt Exp $ */
2/* $NetBSD: strtod.c,v 1.21 1996/02/16 21:19:29 mark Exp $ */ 2/* $NetBSD: strtod.c,v 1.21.4.1 1996/07/20 01:14:54 jtc Exp $ */
3 3
4/**************************************************************** 4/****************************************************************
5 * 5 *
@@ -93,7 +93,7 @@
93 */ 93 */
94 94
95#if defined(LIBC_SCCS) && !defined(lint) 95#if defined(LIBC_SCCS) && !defined(lint)
96static char *rcsid = "$OpenBSD: strtod.c,v 1.2 1996/03/19 23:15:11 niklas Exp $"; 96static char *rcsid = "$OpenBSD: strtod.c,v 1.3 1996/07/27 10:45:23 deraadt Exp $";
97#endif /* LIBC_SCCS and not lint */ 97#endif /* LIBC_SCCS and not lint */
98 98
99#if defined(__m68k__) || defined(__sparc__) || defined(__i386__) || \ 99#if defined(__m68k__) || defined(__sparc__) || defined(__i386__) || \
@@ -1238,7 +1238,7 @@ strtod
1238 rv = 0.; 1238 rv = 0.;
1239 1239
1240 1240
1241 for(s = s00; isspace(*s); s++) 1241 for(s = s00; isspace((unsigned char) *s); s++)
1242 ; 1242 ;
1243 1243
1244 if (*s == '-') { 1244 if (*s == '-') {