aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'io.c')
-rw-r--r--io.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/io.c b/io.c
index 687c9eaf..2b2c8561 100644
--- a/io.c
+++ b/io.c
@@ -447,12 +447,6 @@ iop_close(IOBUF *iop)
iop->flag &= ~IOP_AT_EOF;
iop->flag |= IOP_CLOSED; /* there may be dangling pointers */
iop->dataend = NULL;
-#ifdef _CRAY
- /* Work around bug in UNICOS popen */
- if (iop->fd < 3)
- ret = 0;
- else
-#endif
/* Don't close standard files or else crufty code elsewhere will lose */
/* FIXME: *DO* close it. Just reopen on an invalid handle. */
if (iop->fd == fileno(stdin)