mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/socket/socket.c: ANSIfied. [ruby-core:08601]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10722 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
fbdff22c79
commit
4bc2a9860c
2 changed files with 6 additions and 4 deletions
|
@ -1,3 +1,7 @@
|
|||
Sun Aug 13 12:08:02 2006 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* ext/socket/socket.c: ANSIfied. [ruby-core:08601]
|
||||
|
||||
Sat Aug 12 15:55:32 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* configure.in, bcc32/Makefile.sub, win32/Makefile.sub, win32/dir.h,
|
||||
|
|
|
@ -2817,8 +2817,7 @@ sock_recvfrom_nonblock(int argc, VALUE *argv, VALUE sock)
|
|||
}
|
||||
|
||||
static VALUE
|
||||
sock_accept(sock)
|
||||
VALUE sock;
|
||||
sock_accept(VALUE sock)
|
||||
{
|
||||
OpenFile *fptr;
|
||||
VALUE sock2;
|
||||
|
@ -2880,8 +2879,7 @@ sock_accept(sock)
|
|||
* * Socket#accept
|
||||
*/
|
||||
static VALUE
|
||||
sock_accept_nonblock(sock)
|
||||
VALUE sock;
|
||||
sock_accept_nonblock(VALUE sock)
|
||||
{
|
||||
OpenFile *fptr;
|
||||
VALUE sock2;
|
||||
|
|
Loading…
Reference in a new issue