diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-11-07 20:57:50 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-11-07 20:57:50 +0200 |
commit | bfa38f60f445595a37f5d9dbfb93b4379945d0f5 (patch) | |
tree | 7aaab48314c4d605399101c09f5beda44c2c7ab6 /builtin.c | |
parent | 99fb2a4c290eaf98d9b44d05908579b8423c0940 (diff) | |
parent | ed5e0e468ca758d963b5370ec83f56725087d4f4 (diff) | |
download | egawk-bfa38f60f445595a37f5d9dbfb93b4379945d0f5.tar.gz egawk-bfa38f60f445595a37f5d9dbfb93b4379945d0f5.tar.bz2 egawk-bfa38f60f445595a37f5d9dbfb93b4379945d0f5.zip |
Merge branch 'master' into feature/typed-regex
Diffstat (limited to 'builtin.c')
-rw-r--r-- | builtin.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -125,6 +125,10 @@ efwrite(const void *ptr, return; wrerror: +#ifdef __MINGW32__ + if (errno == 0 || errno == EINVAL) + w32_maybe_set_errno(); +#endif /* die silently on EPIPE to stdout */ if (fp == stdout && errno == EPIPE) gawk_exit(EXIT_FATAL); |