diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 1998-03-30 09:32:56 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 1998-03-30 09:32:56 +0000 |
commit | 1dd17757b547dbc056faa42e13fd3e1fd711a608 (patch) | |
tree | a5be8dbddace6615325aa7034305eea807ff6086 /ext/socket/socket.c | |
parent | 1234770ca21f8bd9586b6c932fdb2cd2b0b2271b (diff) |
gw32 b19 patch
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@146 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/socket/socket.c')
-rw-r--r-- | ext/socket/socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/socket/socket.c b/ext/socket/socket.c index 1b87ae9146..d45db8b818 100644 --- a/ext/socket/socket.c +++ b/ext/socket/socket.c @@ -1137,7 +1137,7 @@ static VALUE sock_s_socketpair(class, domain, type, protocol) VALUE class, domain, type, protocol; { -#if !defined(__CYGWIN32__) && !defined(NT) +#if !defined(NT) int fd; int d, t, sp[2]; |