summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-05-15 14:51:09 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-05-15 14:51:09 +0000
commit2b7996e83978097552b4a280ec9f9983401810e5 (patch)
tree2f0d87e55c1e77841cdd2f2869c56ad667096aa4 /win32
parent29c2876d610275a42642ecb67ddc28906e484968 (diff)
* include/ruby/intern.h: remove rb_fd_copy() to rb_fd_dup() and
rb_w32_fdcopy() to rb_w32_fd_dup(). * win32/win32.c: ditto. * thread.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31580 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 6d04caa649..d636b74e2d 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -2368,7 +2368,7 @@ rb_w32_fdisset(int fd, fd_set *set)
}
void
-rb_w32_fdcopy(rb_fdset_t *dst, const rb_fdset_t *src)
+rb_w32_fd_dup(rb_fdset_t *dst, const rb_fdset_t *src)
{
if ((UINT)dst->capa < src->fdset->fd_count) {
dst->capa = (src->fdset->fd_count / FD_SETSIZE + 1) * FD_SETSIZE;