summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authorH_Konishi <H_Konishi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-08-20 13:03:22 +0000
committerH_Konishi <H_Konishi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-08-20 13:03:22 +0000
commit5738d629122260c6ba0f99ac4cb9dfa486c17b7b (patch)
tree84e64ccc32a5f876e569e8d40cb050c49effd7b5 /io.c
parent514aa4d97632f85d5dbd589d6bb37a49e8d1dbc4 (diff)
* replace of check EPIPE error(in getc()) rutine on bcc32.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2728 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/io.c b/io.c
index 32203dca49..01b7e2a72a 100644
--- a/io.c
+++ b/io.c
@@ -589,9 +589,6 @@ rb_io_fread(ptr, len, f)
#if defined(EWOULDBLOCK) && EWOULDBLOCK != EAGAIN
case EWOULDBLOCK:
#endif
-#ifdef __BORLANDC__
- case EPIPE:
-#endif
return len - n;
}
return 0;