This commit is contained in:
Samuel Williams 2025-08-15 05:06:16 +02:00 committed by GitHub
commit 039a451c53
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,6 +12,7 @@
#ifdef _WIN32
VALUE rb_w32_conv_from_wchar(const WCHAR *wstr, rb_encoding *enc);
#include <ruby/win32.h>
#endif
VALUE rb_cBasicSocket;
@ -613,7 +614,7 @@ void
rsock_make_fd_nonblock(int fd)
{
#ifdef _WIN32
return;
rb_w32_set_nonblock(fd);
#endif
int flags;