aboutsummaryrefslogtreecommitdiffstats
path: root/include/ruby/subst.h
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-08-07 15:44:27 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-08-07 15:44:27 +0000
commitbb0ef922db4682dc57f5150c065b1a3fe2fc1f02 (patch)
tree11d797506a212d517aea591bb8fd27a930598782 /include/ruby/subst.h
parent06efb04e8e2dd45c96b8f245d601f1d3c38486de (diff)
downloadruby-bb0ef922db4682dc57f5150c065b1a3fe2fc1f02.tar.gz
* 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.h15
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