aboutsummaryrefslogtreecommitdiffstats
path: root/replace.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 /replace.c
parent315bd501ca696bc3e3c938b4604d8dac7a6f512f (diff)
downloadegawk-6a2caf2157d87b4b582b2494bdd7d6a688dd0b1f.tar.gz
egawk-6a2caf2157d87b4b582b2494bdd7d6a688dd0b1f.tar.bz2
egawk-6a2caf2157d87b4b582b2494bdd7d6a688dd0b1f.zip
Move to gawk-3.1.6.
Diffstat (limited to 'replace.c')
-rw-r--r--replace.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/replace.c b/replace.c
index f43f9c35..8a5e689b 100644
--- a/replace.c
+++ b/replace.c
@@ -55,7 +55,7 @@
#include "missing_d/strchr.c"
#endif /* HAVE_STRCHR */
-#if !defined(HAVE_STRTOD) || defined(STRTOD_NOT_C89)
+#if !defined(HAVE_STRTOD)
#include "missing_d/strtod.c"
#endif /* HAVE_STRTOD */
@@ -78,3 +78,11 @@
#undef DEBUG
#include "missing_d/mktime.c"
#endif /* HAVE_MKTIME */
+
+#ifndef HAVE_SNPRINTF
+#include "missing_d/snprintf.c"
+#endif
+
+#if defined(HAVE_SOCKETS) && ! defined(HAVE_GETADDRINFO)
+#include "missing_d/getaddrinfo.c"
+#endif