summaryrefslogtreecommitdiffstats
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
commit7fc32bf84acf6bb4041edfd1fb3efcda7b1e4a71 (patch)
treec148fe0f5950da61563e314ea509781c5a630c32 /win32
parent24ec25c58e20cf6b8bfb851babd9368f1e8b83c8 (diff)
downloadruby-7fc32bf84acf6bb4041edfd1fb3efcda7b1e4a71.tar.gz
ruby-7fc32bf84acf6bb4041edfd1fb3efcda7b1e4a71.tar.xz
ruby-7fc32bf84acf6bb4041edfd1fb3efcda7b1e4a71.zip
* 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: http://svn.ruby-lang.org/repos/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 90aac7950..a52e9ce54 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) {