summaryrefslogtreecommitdiff
path: root/missing_d
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2022-07-06 15:26:09 +0300
committerArnold D. Robbins <arnold@skeeve.com>2022-07-06 15:26:09 +0300
commit628b387658b5704cc711e106459ed3bee37ef600 (patch)
tree38cc08783deae6c33a382590b12ee44d667a2526 /missing_d
parent37989990f95388b07ca727d9cda9c0a540d27f9a (diff)
downloadgawk-628b387658b5704cc711e106459ed3bee37ef600.tar.gz
Remove DJGPP support.
Diffstat (limited to 'missing_d')
-rw-r--r--missing_d/ChangeLog4
-rw-r--r--missing_d/snprintf.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/missing_d/ChangeLog b/missing_d/ChangeLog
index f645dd06..6ca385e6 100644
--- a/missing_d/ChangeLog
+++ b/missing_d/ChangeLog
@@ -1,3 +1,7 @@
+2022-07-06 Arnold D. Robbins <arnold@skeeve.com>
+
+ * snprintf.c: Remove stuff related to __DJGPP__.
+
2022-07-03 Arnold D. Robbins <arnold@skeeve.com>
* snprintf.c: Remove stuff related to __EMX__.
diff --git a/missing_d/snprintf.c b/missing_d/snprintf.c
index dfe57c6b..af63dff7 100644
--- a/missing_d/snprintf.c
+++ b/missing_d/snprintf.c
@@ -86,7 +86,7 @@ safe_tmpfile (void)
if ((fd = mkstemp (tmpfilename)) < 0)
return NULL;
-#if ! defined(__DJGPP__) && ! defined(MSDOS) && ! defined(_MSC_VER) \
+#if ! defined(MSDOS) && ! defined(_MSC_VER) \
&& ! defined(_WIN32) && ! defined(__CRTRSXNT__) \
&& ! defined(__MINGW32__) && ! defined(__WIN32__)
/* If not MS unlink after opening. */