diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-05-09 20:08:15 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-05-09 20:08:15 +0300 |
commit | 8ff0b4eaa7592280b5a55087c0326c6ef1f88db5 (patch) | |
tree | eae689a948e50dbf462b7e0d0c3d225409f6c7b0 /missing_d/snprintf.c | |
parent | 17a2a7c14dc27248d87f2561a1ec311ad4972355 (diff) | |
parent | fe0a0998411173db5cab614253562b2efd6f9664 (diff) | |
download | egawk-8ff0b4eaa7592280b5a55087c0326c6ef1f88db5.tar.gz egawk-8ff0b4eaa7592280b5a55087c0326c6ef1f88db5.tar.bz2 egawk-8ff0b4eaa7592280b5a55087c0326c6ef1f88db5.zip |
Merge branch 'gawk-4.0-stable'
Diffstat (limited to 'missing_d/snprintf.c')
-rw-r--r-- | missing_d/snprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/missing_d/snprintf.c b/missing_d/snprintf.c index 254a8e0b..12e50925 100644 --- a/missing_d/snprintf.c +++ b/missing_d/snprintf.c @@ -86,10 +86,10 @@ safe_tmpfile (void) if ((fd = mkstemp (tmpfilename)) < 0) return NULL; -#if ! defined(DJGPP) && ! defined(MSDOS) && ! defined(_MSC_VER) \ +#if ! defined(__DJGPP__) && ! defined(MSDOS) && ! defined(_MSC_VER) \ && ! defined(_WIN32) && ! defined(__CRTRSXNT__) && ! defined(__EMX__) \ && ! defined(__MINGW32__) && ! defined(__WIN32__) - /* If not MS, unlink after opening. */ + /* If not MS or OS/2, unlink after opening. */ unlink (tmpfilename); free(tmpfilename); tmpfilename = NULL; |