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/ruby.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/ruby.h')
| -rw-r--r-- | include/ruby/ruby.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h index 83f68ec083..1b0b111d5e 100644 --- a/include/ruby/ruby.h +++ b/include/ruby/ruby.h @@ -1442,6 +1442,10 @@ int ruby_vsnprintf(char *str, size_t n, char const *fmt, va_list ap); #pragma GCC visibility pop #endif +#ifndef RUBY_DONT_SUBST +#include "ruby/subst.h" +#endif + #if defined(__cplusplus) #if 0 { /* satisfy cc-mode */ |
