aboutsummaryrefslogtreecommitdiffstats
path: root/win32
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-07-21 08:32:34 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-07-21 08:32:34 +0000
commit92cad4305b1751fcea0bcfe1386e8f8cba265167 (patch)
treec148fe0f5950da61563e314ea509781c5a630c32 /win32
parent021660e4428f941553ae0cf893d756f270771471 (diff)
downloadruby-92cad4305b1751fcea0bcfe1386e8f8cba265167.tar.gz
* bcc32/{Makefile.sub,configure.bat,setup.mak: configure_args
support. * bcc32/setup.mak: check runtime version. * win32/win32.c (rb_w32_open_osfhandle): prototype has changed in bcc 5.82. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12831 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r--win32/win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/win32.c b/win32/win32.c
index 90aac79508..a52e9ce54d 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -1771,7 +1771,7 @@ init_stdhandle(void)
#ifdef __BORLANDC__
static int
-rb_w32_open_osfhandle(long osfhandle, int flags)
+rb_w32_open_osfhandle(intptr_t osfhandle, int flags)
{
int fd = _open_osfhandle(osfhandle, flags);
if (fd == -1) {