mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
16 lines
277 B
C
16 lines
277 B
C
![]() |
#ifndef RUBY_SUBST_H
|
||
|
#define RUBY_SUBST_H 1
|
||
|
|
||
|
#ifdef BROKEN_CLOSE
|
||
|
#undef getpeername
|
||
|
#define getpeername ruby_getpeername
|
||
|
#undef getsockname
|
||
|
#define getsockname ruby_getsockname
|
||
|
#undef shutdown
|
||
|
#define shutdown ruby_shutdown
|
||
|
#undef close
|
||
|
#define close ruby_close
|
||
|
#endif
|
||
|
|
||
|
#endif
|