From 2b7996e83978097552b4a280ec9f9983401810e5 Mon Sep 17 00:00:00 2001 From: kosaki Date: Sun, 15 May 2011 14:51:09 +0000 Subject: * 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 --- win32/win32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'win32') 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; -- cgit v1.2.3