diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-11-07 20:57:44 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-11-07 20:57:44 +0200 |
commit | 9ae43a6c83ef1c843072d93216c6267383df9bfa (patch) | |
tree | fbe2b0a9db2f071126753f574b027eb1bd9c6c33 /builtin.c | |
parent | 55e81e9ae7a16aa3beaadbcb565a4c5ff0b89b76 (diff) | |
parent | ed5e0e468ca758d963b5370ec83f56725087d4f4 (diff) | |
download | egawk-9ae43a6c83ef1c843072d93216c6267383df9bfa.tar.gz egawk-9ae43a6c83ef1c843072d93216c6267383df9bfa.tar.bz2 egawk-9ae43a6c83ef1c843072d93216c6267383df9bfa.zip |
Merge branch 'master' into feature/nocopy
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); |