aboutsummaryrefslogtreecommitdiffstats
path: root/missing_d/strtod.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2010-07-16 14:49:57 +0300
committerArnold D. Robbins <arnold@skeeve.com>2010-07-16 14:49:57 +0300
commit6a2caf2157d87b4b582b2494bdd7d6a688dd0b1f (patch)
tree9a2862cc11be4832f188cfbdce175120ceba5024 /missing_d/strtod.c
parent315bd501ca696bc3e3c938b4604d8dac7a6f512f (diff)
downloadegawk-6a2caf2157d87b4b582b2494bdd7d6a688dd0b1f.tar.gz
egawk-6a2caf2157d87b4b582b2494bdd7d6a688dd0b1f.tar.bz2
egawk-6a2caf2157d87b4b582b2494bdd7d6a688dd0b1f.zip
Move to gawk-3.1.6.
Diffstat (limited to 'missing_d/strtod.c')
-rw-r--r--missing_d/strtod.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/missing_d/strtod.c b/missing_d/strtod.c
index 5ebc8c6e..c4f9d2bd 100644
--- a/missing_d/strtod.c
+++ b/missing_d/strtod.c
@@ -70,7 +70,7 @@ register const char **ptr;
if (
#if defined(HAVE_LOCALE_H)
- loc.decimal_point != NULL
+ loc.decimal_point != NULL && do_posix
? *s == loc.decimal_point[0]
: *s == '.'
#else