diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-08-07 15:44:27 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-08-07 15:44:27 +0000 |
commit | bb0ef922db4682dc57f5150c065b1a3fe2fc1f02 (patch) | |
tree | 11d797506a212d517aea591bb8fd27a930598782 /include/ruby/subst.h | |
parent | 06efb04e8e2dd45c96b8f245d601f1d3c38486de (diff) |
* include/ruby/subst.h: new file for substitute standard functions..
* include/ruby/missing.h: don't substitute "close", etc. here.
* include/ruby/ruby.h: include ruby/subst.h at last.
This prevents substituting "close" in unitstd.h.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/subst.h')
-rw-r--r-- | include/ruby/subst.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/ruby/subst.h b/include/ruby/subst.h new file mode 100644 index 0000000000..2287baeafe --- /dev/null +++ b/include/ruby/subst.h @@ -0,0 +1,15 @@ +#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 |