aboutsummaryrefslogtreecommitdiffstats
path: root/win32/win32.c
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-01-05 08:00:50 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-01-05 08:00:50 +0000
commit09736c1621ad5cb67ac1b4b21ce2ea6f3761539b (patch)
tree43e604ba7d85fdbe4c4568e42adad4202430f1de /win32/win32.c
parent5e51e94304a30446108752829639247da23873ca (diff)
downloadruby-09736c1621ad5cb67ac1b4b21ce2ea6f3761539b.tar.gz
* parse.y (BITSTACK_POP): workaround for bcc32 compiler's bug.
shift assignment operator '>>=' for __int64 in struct may generate collapsed code. [ruby-dev:25342] * win32/win32.[ch]: failed to compile on bcc32 (and probably wince) [ruby-dev:25306] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7729 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32/win32.c')
-rw-r--r--win32/win32.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/win32/win32.c b/win32/win32.c
index c21fca6fbc..da79b438a1 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -3520,6 +3520,7 @@ rb_w32_snprintf(char *buf, size_t size, const char *format, ...)
return ret;
}
+#if !defined(__BORLANDC__) && !defined(_WIN32_WCE)
int
rb_w32_isatty(int fd)
{
@@ -3533,6 +3534,7 @@ rb_w32_isatty(int fd)
}
return 1;
}
+#endif
#undef mkdir
#undef rmdir