From aa904b2050026a0fa6bc7d3e1869dc471c1b0749 Mon Sep 17 00:00:00 2001 From: H_Konishi Date: Sat, 14 Sep 2002 11:17:32 +0000 Subject: * error.c(rb_sys_fail): remove case EPIPE on bcc32 . git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2865 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- error.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'error.c') diff --git a/error.c b/error.c index ed2d5220b7..dfa9482794 100644 --- a/error.c +++ b/error.c @@ -733,9 +733,6 @@ rb_sys_fail(mesg) rb_bug("rb_sys_fail() - errno == 0"); } -#ifdef __BORLANDC__ - if (errno == EPIPE) return; // (*moriq*) -#endif err = strerror(errno); if (mesg) { volatile VALUE tmp = rb_str_inspect(rb_str_new2(mesg)); -- cgit v1.2.3